Fix bug in LoadGameActivity that caused a sudoku's 'custom' label to disappear after a sudoku located above it gets deleted
This commit is contained in:
parent
a3a9ae4d39
commit
1742b9dc33
1 changed files with 2 additions and 0 deletions
|
@ -252,6 +252,8 @@ public class LoadGameActivity extends BaseActivity implements IDeleteDialogFragm
|
|||
|
||||
if(!gic.isCustom()) {
|
||||
customImage.setVisibility(View.INVISIBLE);
|
||||
} else {
|
||||
customImage.setVisibility(View.VISIBLE);
|
||||
}
|
||||
|
||||
int time = gic.getTimePlayed();
|
||||
|
|
Loading…
Reference in a new issue