]> git.cworth.org Git - wordgame/commitdiff
Don't display slots for target words less than 5 letters long
authorCarl Worth <cworth@cworth.org>
Tue, 8 May 2007 13:59:26 +0000 (06:59 -0700)
committerCarl Worth <cworth@cworth.org>
Tue, 8 May 2007 13:59:26 +0000 (06:59 -0700)
It was just too overwhelming to see dozens of 3- and 4-letter words
every time. It's now actually feasible to try to get all the words
when you've only got the 5-, 6-, and 7-letter words to attempt.

rack-fancy.c

index a8578cccd34fbb03ace43424156b56d22fb2c927..2a60f88e336f94d4a902df362f94e462112674b1 100644 (file)
@@ -98,7 +98,7 @@ dict_paint_action (void *closure, char *word, dict_entry_t *entry)
     double new_x, new_y;
     int found, show_blanks = FALSE;
 
-    if (strlen (word) < 3)
+    if (strlen (word) < 5)
        return;
 
     found = *entry & RACK_DICT_ENTRY_FOUND;