diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2007-12-20 02:56:56 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2007-12-20 02:56:56 +0000 |
| commit | 929d4aba90170817efd5916b07cac826ca413ea7 (patch) | |
| tree | 0e9db2f0b6510efbe195daaec6d2c385b34e0b72 | |
| parent | correctly handle orientation changes of guidelines (diff) | |
| download | inkscape-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)
| -rw-r--r-- | src/event-context.cpp | 4 |
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; |
