From: cilix42 Date: Mon, 10 Sep 2007 14:46:48 +0000 (+0000) Subject: Don't catch Shift+Ctrl+L (Layers dialog) in 3D box context X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=200832f5f178e603ed5d8b9487f478c8723d9b90;p=inkscape.git Don't catch Shift+Ctrl+L (Layers dialog) in 3D box context --- diff --git a/src/box3d-context.cpp b/src/box3d-context.cpp index 2abf0112f..818a87c6c 100644 --- a/src/box3d-context.cpp +++ b/src/box3d-context.cpp @@ -487,6 +487,7 @@ static gint sp_3dbox_context_root_handler(SPEventContext *event_context, GdkEven break; case GDK_L: + if (MOD__CTRL) break; // Don't catch Shift+Ctrl+L (Layers dialog) bc->_vpdrag->show_lines = !bc->_vpdrag->show_lines; bc->_vpdrag->updateLines(); ret = true;