mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
disable Rematch button (for now)
This commit is contained in:
parent
3a45db66cf
commit
1bc8070bb1
2 changed files with 2 additions and 1 deletions
|
@ -248,7 +248,7 @@ public class BoardActivity extends XWActivity
|
|||
}
|
||||
};
|
||||
ab.setNegativeButton( R.string.button_retry, lstnr );
|
||||
} else if ( GAME_OVER == id ) {
|
||||
} else if ( XWApp.REMATCH_SUPPORTED && GAME_OVER == id ) {
|
||||
lstnr = new DialogInterface.OnClickListener() {
|
||||
public void onClick( DialogInterface dlg,
|
||||
int whichButton ) {
|
||||
|
|
|
@ -33,6 +33,7 @@ public class XWApp extends Application {
|
|||
public static final boolean SMSSUPPORTED = true;
|
||||
public static final boolean GCMSUPPORTED = true;
|
||||
public static final boolean ATTACH_SUPPORTED = true;
|
||||
public static final boolean REMATCH_SUPPORTED = false;
|
||||
public static final boolean DEBUG = true; // DON'T SHIP THIS WAY
|
||||
|
||||
public static final String SMS_PUBLIC_HEADER = "-XW4";
|
||||
|
|
Loading…
Reference in a new issue