mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-28 07:58:08 +01:00
disable hint buttons when hint feature's turned off
This commit is contained in:
parent
93eca7b936
commit
210a3f033b
1 changed files with 6 additions and 0 deletions
|
@ -772,6 +772,12 @@ public class BoardActivity extends Activity implements UtilCtxt {
|
||||||
.CMD_UNDO_CUR );
|
.CMD_UNDO_CUR );
|
||||||
}
|
}
|
||||||
}) ;
|
}) ;
|
||||||
|
|
||||||
|
// Stuff we can disable now
|
||||||
|
if ( m_gi.hintsNotAllowed ) {
|
||||||
|
m_toolbar.update( Toolbar.BUTTON_HINT_PREV, 0 );
|
||||||
|
m_toolbar.update( Toolbar.BUTTON_HINT_NEXT, 0 );
|
||||||
|
}
|
||||||
} // populateToolbar
|
} // populateToolbar
|
||||||
|
|
||||||
private DialogInterface.OnDismissListener makeODLforBlocking()
|
private DialogInterface.OnDismissListener makeODLforBlocking()
|
||||||
|
|
Loading…
Add table
Reference in a new issue