From: cilix42 Date: Thu, 20 Dec 2007 02:56:56 +0000 (+0000) Subject: Make Shift+Ctrl+D (Document Properties dialog) work again (was shadowed by the shortc... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c7116a26257e1c0ca188bc56434c96cfaa77dacb;p=inkscape.git Make Shift+Ctrl+D (Document Properties dialog) work again (was shadowed by the shortcut 'D' for toggling the dropper tool). --- 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;