mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-02-05 20:45:49 +01:00
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:
parent
2c95179050
commit
83f6ebca79
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue