From d5e6dbd56df0a64ea7ac88dc974e25f2fdac7a81 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 20 Jun 2017 16:22:30 +1000 Subject: [PATCH] Allow numbers to be entered Since the occasional puzzle contains numbers, this change allows the user to use the system keyboard to enter numbers into crossword squares. --- app/src/main/java/com/totsp/crossword/PlayActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/totsp/crossword/PlayActivity.java b/app/src/main/java/com/totsp/crossword/PlayActivity.java index 2ed6d5e0..03a3b485 100755 --- a/app/src/main/java/com/totsp/crossword/PlayActivity.java +++ b/app/src/main/java/com/totsp/crossword/PlayActivity.java @@ -67,7 +67,7 @@ public class PlayActivity extends ShortyzActivity { private static final Logger LOG = Logger.getLogger("com.totsp.crossword"); private static final int INFO_DIALOG = 0; private static final int REVEAL_PUZZLE_DIALOG = 2; - static final String ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; + static final String ALPHA = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; @SuppressWarnings("rawtypes") private AdapterView across; @SuppressWarnings("rawtypes")