mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
disable ill-timed not-again hint
On new installs it happens at the wrong time. So get rid of it for now.
This commit is contained in:
parent
43c1e13563
commit
24125aad0c
1 changed files with 3 additions and 1 deletions
|
@ -571,7 +571,9 @@ public class BoardCanvas extends Canvas implements DrawCtx {
|
||||||
drawLine( xx, rect.top, xx, rect.top + rect.height(),
|
drawLine( xx, rect.top, xx, rect.top + rect.height(),
|
||||||
m_strokePaint );
|
m_strokePaint );
|
||||||
|
|
||||||
if ( mPendingCount > 0 ) {
|
// Remove this for now. It comes up at the wrong time for new
|
||||||
|
// installs. Need to delay it. PENDING
|
||||||
|
if ( false && mPendingCount > 0 ) {
|
||||||
mPendingCount = 0;
|
mPendingCount = 0;
|
||||||
postNAHint( R.string.not_again_longtap_lookup,
|
postNAHint( R.string.not_again_longtap_lookup,
|
||||||
R.string.key_na_longtap_lookup );
|
R.string.key_na_longtap_lookup );
|
||||||
|
|
Loading…
Reference in a new issue