diff options
| author | Eduard Braun <eduard.braun2@gmx.de> | 2017-07-18 18:53:06 +0000 |
|---|---|---|
| committer | Eduard Braun <eduard.braun2@gmx.de> | 2017-07-18 18:53:06 +0000 |
| commit | 9f4aee7fcee83dc16e8e49dd50c6d33ccdc6a1f3 (patch) | |
| tree | 3da33881a7d775a0ec5f22394b900f154870640e | |
| parent | Update msys2installdeps.sh (diff) | |
| download | inkscape-9f4aee7fcee83dc16e8e49dd50c6d33ccdc6a1f3.tar.gz inkscape-9f4aee7fcee83dc16e8e49dd50c6d33ccdc6a1f3.zip | |
Shortcuts: Fix "Tab" vs. "Shift + Tab"
The changes introduced in 46fd67ec49c3988db20db422061a2f52582c896c
changed the behavior in this case:
- pressing Tab produces a keyval with name "Tab"
- pressing Shift+Tab produces a keyval with name "ISO_Left_Tab"
the Shift modifier is removed in this case as a
"consumed modifier", see commit mentioned above for details
| -rw-r--r-- | share/keys/inkscape.xml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/share/keys/inkscape.xml b/share/keys/inkscape.xml index 88694e6be..2f037682c 100644 --- a/share/keys/inkscape.xml +++ b/share/keys/inkscape.xml @@ -250,9 +250,7 @@ override) the bindings in the main default.xml. <bind key="F11" action="FullScreenFocus" modifiers="Primary" display="true" /> <bind key="Tab" modifiers="Primary" action="NextWindow" display="true" /> - <bind key="ISO_Left_Tab" modifiers="Primary" action="NextWindow" /> - <bind key="Tab" modifiers="Primary,Shift" action="PrevWindow" display="true" /> - <bind key="ISO_Left_Tab" modifiers="Primary,Shift" action="PrevWindow" /> + <bind key="ISO_Left_Tab" modifiers="Primary" action="PrevWindow" display="true" /> <bind key="numbersign" modifiers="Shift" action="ToggleGrid" /> <!-- # --> <bind key="numbersign" action="ToggleGrid" display="true" /> @@ -377,9 +375,7 @@ override) the bindings in the main default.xml. <bind key="exclam" modifiers="Alt,Shift" action="EditInvertInAllLayers" /> <bind key="Tab" action="EditSelectNext" display="true" /> - <bind key="ISO_Left_Tab" action="EditSelectNext" /> - <bind key="Tab" modifiers="Shift" action="EditSelectPrev" display="true" /> - <bind key="ISO_Left_Tab" modifiers="Shift" action="EditSelectPrev" /> + <bind key="ISO_Left_Tab" action="EditSelectPrev" display="true" /> <bind key="Escape" action="EditDeselect" /> |
