aboutsummaryrefslogtreecommitdiff
path: root/devel.but
diff options
context:
space:
mode:
authorFranklin Wei <franklin@rockbox.org>2024-07-21 04:49:06 -0400
committerSimon Tatham <anakin@pobox.com>2024-07-31 23:29:00 +0100
commit3f8ef290786fbaf7b9ec200a2fd598eb324c6b0c (patch)
tree94c79dfc8714155d82736452e35cbe1096dfdb35 /devel.but
parent894115ad3db62b7baa5707cc287c9ab251acc2a7 (diff)
downloadpuzzles-3f8ef290786fbaf7b9ec200a2fd598eb324c6b0c.zip
puzzles-3f8ef290786fbaf7b9ec200a2fd598eb324c6b0c.tar.gz
puzzles-3f8ef290786fbaf7b9ec200a2fd598eb324c6b0c.tar.bz2
puzzles-3f8ef290786fbaf7b9ec200a2fd598eb324c6b0c.tar.xz
midend_process_key: allow Shift+Tab to pass through to the backend.
Previously, a button code of ('\t' | MOD_SHFT) from a frontend would have the MOD_SHFT flag stripped by midend_process_key, resulting in a bare '\t' passed to the backend. Now, this combination is allowed to pass through to the backend. This will be used in the keyboard interface to Untangle, which I'm about to add.
Diffstat (limited to 'devel.but')
-rw-r--r--devel.but6
1 files changed, 3 insertions, 3 deletions
diff --git a/devel.but b/devel.but
index 4d205ac..577e74d 100644
--- a/devel.but
+++ b/devel.but
@@ -1145,9 +1145,9 @@ the \c{button} parameter:
\dt \cw{MOD_CTRL}, \cw{MOD_SHFT}
-\dd These indicate that the Control or Shift key was pressed
-alongside the key. They only apply to the cursor keys, not to mouse
-buttons or anything else.
+\dd These indicate that the Control or Shift key was pressed alongside
+the key. They only apply to the cursor keys and the ASCII horizontal
+tab character \cw{\\t}, not to mouse buttons or anything else.
\dt \cw{MOD_NUM_KEYPAD}