Fixed a bug that would prevent errors from being highlighted.
This commit is contained in:
parent
ad4bb2b129
commit
ca76ef164a
1 changed files with 1 additions and 1 deletions
|
@ -207,13 +207,13 @@ public class SudokuFieldLayout extends RelativeLayout implements IHighlightChang
|
||||||
gamecells[i][j].invalidate();
|
gamecells[i][j].invalidate();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
this.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void dispatchDraw(Canvas canvas) {
|
public void dispatchDraw(Canvas canvas) {
|
||||||
super.dispatchDraw(canvas);
|
super.dispatchDraw(canvas);
|
||||||
|
|
||||||
|
|
||||||
if(gameController == null) {
|
if(gameController == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue