mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
add debug-only menuitem for marking a game corrupt
This commit is contained in:
parent
5fce6d8e26
commit
b94ba0fd96
3 changed files with 11 additions and 1 deletions
|
@ -1793,6 +1793,7 @@ public class GamesListDelegate extends ListDelegateBase
|
||||||
&& (BuildConfig.DEBUG || XWPrefs.getDebugEnabled( m_activity ));
|
&& (BuildConfig.DEBUG || XWPrefs.getDebugEnabled( m_activity ));
|
||||||
}
|
}
|
||||||
Utils.setItemVisible( menu, R.id.games_game_invites, enable );
|
Utils.setItemVisible( menu, R.id.games_game_invites, enable );
|
||||||
|
Utils.setItemVisible( menu, R.id.games_game_markbad, enable );
|
||||||
Utils.setItemVisible( menu, R.id.games_game_netstats, isMultiGame );
|
Utils.setItemVisible( menu, R.id.games_game_netstats, isMultiGame );
|
||||||
|
|
||||||
enable = !m_launchedGames.contains( rowID );
|
enable = !m_launchedGames.contains( rowID );
|
||||||
|
@ -1989,6 +1990,11 @@ public class GamesListDelegate extends ListDelegateBase
|
||||||
makeOkOnlyBuilder( msg ).show();
|
makeOkOnlyBuilder( msg ).show();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
// DEBUG only
|
||||||
|
case R.id.games_game_markbad:
|
||||||
|
Quarantine.recordOpened( selRowIDs[0] );
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
handled = false;
|
handled = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,5 +38,7 @@
|
||||||
<item android:id="@+id/games_game_invites"
|
<item android:id="@+id/games_game_invites"
|
||||||
android:title="@string/board_menu_game_showInvites"
|
android:title="@string/board_menu_game_showInvites"
|
||||||
/>
|
/>
|
||||||
|
<item android:id="@+id/games_game_markbad"
|
||||||
|
android:title="@string/list_item_markbad"
|
||||||
|
/>
|
||||||
</menu>
|
</menu>
|
||||||
|
|
|
@ -2306,6 +2306,8 @@
|
||||||
<string name="processing_games">Processing games</string>
|
<string name="processing_games">Processing games</string>
|
||||||
<string name="list_item_select">Select</string>
|
<string name="list_item_select">Select</string>
|
||||||
<string name="list_item_deselect">De-select</string>
|
<string name="list_item_deselect">De-select</string>
|
||||||
|
<!-- Debug-only item for testing corrupt game warnings -->
|
||||||
|
<string name="list_item_markbad">Mark corrupt</string>
|
||||||
<string name="not_again_dfltname_fmt">You are using the default
|
<string name="not_again_dfltname_fmt">You are using the default
|
||||||
player name \"%1$s\". Would you like to personalize with your own
|
player name \"%1$s\". Would you like to personalize with your own
|
||||||
name before you create this game?</string>
|
name before you create this game?</string>
|
||||||
|
|
Loading…
Reference in a new issue