summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/tool-base.cpp
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2016-06-11 01:58:44 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2016-06-11 01:58:44 +0000
commit66eaf085256b2c2cf6188aca1a4790ba70b96873 (patch)
tree8e51ab4fd2451fc04934a54b416fbae94a468eb8 /src/ui/tools/tool-base.cpp
parentAdd 'transform' to list of allowed properties for <flowRoot>. (diff)
parentEnabled using the context menu key additionally to the already working Shift+... (diff)
downloadinkscape-66eaf085256b2c2cf6188aca1a4790ba70b96873.tar.gz
inkscape-66eaf085256b2c2cf6188aca1a4790ba70b96873.zip
Enabled using the context menu key additionally to the already working Shift+F10 key combination to show the context menu
(bzr r14973)
Diffstat (limited to 'src/ui/tools/tool-base.cpp')
-rw-r--r--src/ui/tools/tool-base.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ui/tools/tool-base.cpp b/src/ui/tools/tool-base.cpp
index abac2c091..36fe26e76 100644
--- a/src/ui/tools/tool-base.cpp
+++ b/src/ui/tools/tool-base.cpp
@@ -683,6 +683,11 @@ bool ToolBase::root_handler(GdkEvent* event) {
}
break;
+ case GDK_KEY_Menu:
+ sp_event_root_menu_popup(desktop, NULL, event);
+ ret = TRUE;
+ break;
+
case GDK_KEY_F10:
if (MOD__SHIFT_ONLY(event)) {
sp_event_root_menu_popup(desktop, NULL, event);