diff options
| author | bulia byak <buliabyak@gmail.com> | 2006-05-29 18:39:38 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2006-05-29 18:39:38 +0000 |
| commit | a424fdf8b5e74b53ea2b2c77598cf03b93f601c7 (patch) | |
| tree | 6cdbc4cd5912c98ab2b1de754d53fb67ef1ee79f /src/interface.cpp | |
| parent | add l-systems example (diff) | |
| download | inkscape-a424fdf8b5e74b53ea2b2c77598cf03b93f601c7.tar.gz inkscape-a424fdf8b5e74b53ea2b2c77598cf03b93f601c7.zip | |
swap order of palette and statusbar commands to match the screen layout
(bzr r1068)
Diffstat (limited to 'src/interface.cpp')
| -rw-r--r-- | src/interface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interface.cpp b/src/interface.cpp index 959e231e2..2f4a4d033 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -779,10 +779,10 @@ sp_ui_checkboxes_menus(GtkMenu *m, Inkscape::UI::View::View *view) checkitem_toggled, checkitem_update, Inkscape::Verb::get(SP_VERB_TOGGLE_RULERS)); sp_ui_menu_append_check_item_from_verb(m, view, NULL, NULL, "scrollbars", checkitem_toggled, checkitem_update, Inkscape::Verb::get(SP_VERB_TOGGLE_SCROLLBARS)); - sp_ui_menu_append_check_item_from_verb(m, view, _("_Statusbar"), _("Show or hide the statusbar (at the bottom of the window)"), "statusbar", - checkitem_toggled, checkitem_update, 0); sp_ui_menu_append_check_item_from_verb(m, view, _("_Palette"), _("Show or hide the color palette"), "panels", checkitem_toggled, checkitem_update, 0); + sp_ui_menu_append_check_item_from_verb(m, view, _("_Statusbar"), _("Show or hide the statusbar (at the bottom of the window)"), "statusbar", + checkitem_toggled, checkitem_update, 0); } /** \brief This function turns XML into a menu |
