mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
don't hide delete box for archived games
This commit is contained in:
parent
34f68a435b
commit
929de903f4
1 changed files with 1 additions and 1 deletions
|
@ -199,7 +199,7 @@ public class GameOverAlert extends XWDialogFragment
|
|||
{
|
||||
mArchiveBox.setVisibility( mHasPending || mInArchive ? View.GONE : View.VISIBLE );
|
||||
Utils.enableAlertButton( mDialog, AlertDialog.BUTTON_NEGATIVE, !mHasPending );
|
||||
mDeleteBox.setVisibility( mHasPending || mInArchive ? View.GONE : View.VISIBLE );
|
||||
mDeleteBox.setVisibility( mHasPending ? View.GONE : View.VISIBLE );
|
||||
}
|
||||
|
||||
private void initView()
|
||||
|
|
Loading…
Reference in a new issue