From 83f6ebca79bbc8db86f87ec84c019af70deb334a Mon Sep 17 00:00:00 2001 From: Andy2 Date: Sun, 7 Nov 2010 12:13:07 -0800 Subject: [PATCH] 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. --- .../XWords4/src/org/eehouse/android/xw4/BoardActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java index e234d74f4..c03aa94df 100644 --- a/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java +++ b/xwords4/android/XWords4/src/org/eehouse/android/xw4/BoardActivity.java @@ -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 ); } }