summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMaximilian Albert <maximilian.albert@gmail.com>2007-12-20 02:56:56 +0000
committercilix42 <cilix42@users.sourceforge.net>2007-12-20 02:56:56 +0000
commit929d4aba90170817efd5916b07cac826ca413ea7 (patch)
tree0e9db2f0b6510efbe195daaec6d2c385b34e0b72 /src
parentcorrectly handle orientation changes of guidelines (diff)
downloadinkscape-929d4aba90170817efd5916b07cac826ca413ea7.tar.gz
inkscape-929d4aba90170817efd5916b07cac826ca413ea7.zip
Make Shift+Ctrl+D (Document Properties dialog) work again (was shadowed by the shortcut 'D' for toggling the dropper tool).
(bzr r4262)
Diffstat (limited to 'src')
-rw-r--r--src/event-context.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/event-context.cpp b/src/event-context.cpp
index 6186bb36f..95b840b94 100644
--- a/src/event-context.cpp
+++ b/src/event-context.cpp
@@ -522,6 +522,10 @@ static gint sp_event_context_private_root_handler(SPEventContext *event_context,
case GDK_D:
case GDK_d:
+ if (MOD__SHIFT && MOD__CTRL) {
+ // don't catch Shift+Ctrl+D (Document Properties dialog)
+ break;
+ }
sp_toggle_dropper(desktop);
ret = TRUE;
break;