mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +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 );
|
||||
}
|
||||
}) ;
|
||||
|
||||
// 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
|
||||
|
||||
private DialogInterface.OnDismissListener makeODLforBlocking()
|
||||
|
|
Loading…
Reference in a new issue