Ticket #3971: sudoku.patch
File sudoku.patch, 524 bytes (added by , 16 years ago) |
---|
-
src/apps/sudoku/SudokuView.cpp
847 847 } 848 848 849 849 uint32 x, y; 850 if (!_GetFieldFor(where, x, y) 850 bool isField = _GetFieldFor(where, x, y); 851 if (isField) { 852 fKeyboardX = x; 853 fKeyboardY = y; 854 } 855 856 if (!isField 851 857 || (fField->FlagsAt(x, y) & kInitialValue) != 0 852 858 || !fShowCursor && fField->ValueAt(x, y) != 0) { 853 859 _RemoveHint();