summaryrefslogtreecommitdiffstats
path: root/src/verbs.cpp
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-07-17 12:16:27 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-07-17 12:16:27 +0000
commit0ae1b56c3420006295bdd1cafe3b0fc57f2f89be (patch)
treeac056dd2c38105bbbcc8d45086641e749563541b /src/verbs.cpp
parentRevert accidental change to configure.ac (diff)
downloadinkscape-0ae1b56c3420006295bdd1cafe3b0fc57f2f89be.tar.gz
inkscape-0ae1b56c3420006295bdd1cafe3b0fc57f2f89be.zip
Fix ordering of verbs
(bzr r12423)
Diffstat (limited to 'src/verbs.cpp')
-rw-r--r--src/verbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/verbs.cpp b/src/verbs.cpp
index d0396155c..a085e841f 100644
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
@@ -2452,10 +2452,10 @@ Verb *Verb::_base_verbs[] = {
N_("Select previous object or node"), NULL),
new EditVerb(SP_VERB_EDIT_DESELECT, "EditDeselect", N_("D_eselect"),
N_("Deselect any selected objects or nodes"), INKSCAPE_ICON("edit-select-none")),
- new EditVerb(SP_VERB_EDIT_GUIDES_AROUND_PAGE, "EditGuidesAroundPage", N_("Create _Guides Around the Page"),
- N_("Create four guides aligned with the page borders"), NULL),
new EditVerb(SP_VERB_EDIT_DELETE_ALL_GUIDES, "EditRemoveAllGuides", N_("Delete All Guides"),
N_("Create four guides aligned with the page borders"), NULL),
+ new EditVerb(SP_VERB_EDIT_GUIDES_AROUND_PAGE, "EditGuidesAroundPage", N_("Create _Guides Around the Page"),
+ N_("Create four guides aligned with the page borders"), NULL),
new EditVerb(SP_VERB_EDIT_NEXT_PATHEFFECT_PARAMETER, "EditNextPathEffectParameter", N_("Next path effect parameter"),
N_("Show next editable path effect parameter"), INKSCAPE_ICON("path-effect-parameter-next")),