mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-29 08:34:37 +01:00
don't show resend messages menu when anything's selected
This commit is contained in:
parent
6f373c6c11
commit
256dda85c0
1 changed files with 2 additions and 1 deletions
|
@ -694,7 +694,8 @@ public class GamesListDelegate extends DelegateBase
|
|||
enable = nothingSelected && XWPrefs.getStudyEnabled( m_activity );
|
||||
Utils.setItemVisible( menu, R.id.games_menu_study, enable );
|
||||
|
||||
enable = 0 < DBUtils.getGamesWithSendsPending( m_activity ).size();
|
||||
enable = nothingSelected &&
|
||||
0 < DBUtils.getGamesWithSendsPending( m_activity ).size();
|
||||
Utils.setItemVisible( menu, R.id.games_menu_resend, enable );
|
||||
|
||||
m_menuPrepared = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue