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:
Eric House 2020-09-23 12:12:27 -07:00
parent 43c1e13563
commit 24125aad0c

View file

@ -571,7 +571,9 @@ public class BoardCanvas extends Canvas implements DrawCtx {
drawLine( xx, rect.top, xx, rect.top + rect.height(),
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;
postNAHint( R.string.not_again_longtap_lookup,
R.string.key_na_longtap_lookup );