mirror of
git://git.tartarus.org/simon/puzzles.git
synced 2025-04-20 15:41:30 -07:00
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.
This commit is contained in:

committed by
Simon Tatham

parent
894115ad3d
commit
3f8ef29078
@ -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}
|
||||
|
||||
|
Reference in New Issue
Block a user