diff options
| -rw-r--r-- | test/sudoku.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/sudoku.cxx b/test/sudoku.cxx index 4699f6dcd..d4094f7ec 100644 --- a/test/sudoku.cxx +++ b/test/sudoku.cxx @@ -348,6 +348,7 @@ SudokuCell::handle(int event) { break; case FL_KEYDOWN : + if (Fl::event_state() & FL_CTRL) break; int key = Fl::event_key() - '0'; if (key < 0 || key > 9) key = Fl::event_key() - FL_KP - '0'; if (key > 0 && key <= 9) { |
