diff options
| -rw-r--r-- | share/keys/default.xml | 2 | ||||
| -rw-r--r-- | share/keys/inkscape.xml | 2 | ||||
| -rw-r--r-- | share/keys/xara.xml | 3 | ||||
| -rw-r--r-- | src/menus-skeleton.h | 3 | ||||
| -rw-r--r-- | src/preferences-skeleton.h | 2 | ||||
| -rw-r--r-- | src/ui/dialog/layer-editor.cpp | 2 |
6 files changed, 10 insertions, 4 deletions
diff --git a/share/keys/default.xml b/share/keys/default.xml index f2df9c563..497acf43f 100644 --- a/share/keys/default.xml +++ b/share/keys/default.xml @@ -442,6 +442,8 @@ override) the bindings in the main default.xml. <bind key="Page_Down" modifiers="Shift" action="LayerMoveToPrev" display="true"/> <bind key="KP_Page_Down" modifiers="Shift" action="LayerMoveToPrev" /> + <bind key="L" modifiers="Ctrl,Shift" action="DialogLayers" display="true" /> + <!-- Dialogs --> <bind key="x" modifiers="Ctrl,Shift" action="DialogXMLEditor" display="true"/> diff --git a/share/keys/inkscape.xml b/share/keys/inkscape.xml index f2df9c563..497acf43f 100644 --- a/share/keys/inkscape.xml +++ b/share/keys/inkscape.xml @@ -442,6 +442,8 @@ override) the bindings in the main default.xml. <bind key="Page_Down" modifiers="Shift" action="LayerMoveToPrev" display="true"/> <bind key="KP_Page_Down" modifiers="Shift" action="LayerMoveToPrev" /> + <bind key="L" modifiers="Ctrl,Shift" action="DialogLayers" display="true" /> + <!-- Dialogs --> <bind key="x" modifiers="Ctrl,Shift" action="DialogXMLEditor" display="true"/> diff --git a/share/keys/xara.xml b/share/keys/xara.xml index a2d7c40d5..f32d124d3 100644 --- a/share/keys/xara.xml +++ b/share/keys/xara.xml @@ -31,7 +31,6 @@ Push Tool SHIFT+F8 or ALT+X Clipart Gallery SHIFT+F10 Fill Gallery SHIFT+F11 Frame Gallery SHIFT+F12 -Layer Gallery F10 Bitmap Gallery F11 Line Gallery F12 // stroke style? Name Gallery CTRL+SHIFT+F9 @@ -502,6 +501,8 @@ Hom/end keys-select minimum or maximum feather values <bind key="Page_Down" modifiers="Shift" action="LayerMoveToPrev" /> <bind key="KP_Page_Down" modifiers="Shift" action="LayerMoveToPrev" /> + <bind key="F10" action="DialogLayers" display="true" /> + <!-- Dialogs --> <bind key="x" modifiers="Ctrl,Shift" action="DialogXMLEditor" display="true"/> diff --git a/src/menus-skeleton.h b/src/menus-skeleton.h index 7d516ec1a..986b36edf 100644 --- a/src/menus-skeleton.h +++ b/src/menus-skeleton.h @@ -129,7 +129,6 @@ static char const menus_skeleton[] = " <verb verb-id=\"NextWindow\" />\n" " <separator/>\n" " <verb verb-id=\"ViewNew\" />\n" -" <verb verb-id=\"DialogLayers\" />\n" " <verb verb-id=\"ViewIconPreview\" />\n" " </submenu>\n" " <submenu name=\"" N_("_Layer") "\">\n" @@ -148,6 +147,8 @@ static char const menus_skeleton[] = " <verb verb-id=\"LayerToBottom\" />\n" " <separator/>\n" " <verb verb-id=\"LayerDelete\" />\n" +" <separator/>\n" +" <verb verb-id=\"DialogLayers\" />\n" " </submenu>\n" " <submenu name=\"" N_("_Object") "\">\n" " <verb verb-id=\"DialogFillStroke\" />\n" diff --git a/src/preferences-skeleton.h b/src/preferences-skeleton.h index 073fdbb78..d709173d8 100644 --- a/src/preferences-skeleton.h +++ b/src/preferences-skeleton.h @@ -140,7 +140,7 @@ static char const preferences_skeleton[] = " <group id=\"iconpreview\" />\n" " <group id=\"aboutextensions\" />\n" " <group id=\"treeeditor\" />\n" -" <group id=\"layereditor\" />\n" +" <group id=\"layers\" />\n" " <group id=\"extensioneditor\" />\n" " <group id=\"trace\" />\n" " <group id=\"script\" />\n" diff --git a/src/ui/dialog/layer-editor.cpp b/src/ui/dialog/layer-editor.cpp index 03a546a89..79c4fbcc2 100644 --- a/src/ui/dialog/layer-editor.cpp +++ b/src/ui/dialog/layer-editor.cpp @@ -21,7 +21,7 @@ namespace UI { namespace Dialog { LayerEditor::LayerEditor() - : Dialog ("dialogs.layereditor", SP_VERB_NONE /*FIXME*/) + : Dialog ("dialogs.layers", SP_VERB_NONE /*FIXME*/) { // TODO: Insert widgets |
