work around bug -- or design flaw -- where when timer is set hint or

robot with blank in tray keeps flashing the in-progress indicator by
flagging CMD_TIMER_FIRED as a non-ui event so busy() won't return when
it's what's on the queue.  Problem with that is that the timer stops
advancing during a hint which is clearly not what's happened.
This commit is contained in:
Andy2 2010-11-07 12:13:07 -08:00
parent 2c95179050
commit 83f6ebca79

View file

@ -106,7 +106,7 @@ public class BoardActivity extends XWActivity implements UtilCtxt {
public void run() {
m_timers[m_why] = null;
if ( null != m_jniThread ) {
m_jniThread.handle( JNICmd.CMD_TIMER_FIRED,
m_jniThread.handle( JNICmd.CMD_TIMER_FIRED, false,
m_why, m_when, m_handle );
}
}