diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-06-10 15:00:05 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-06-10 15:00:05 +0000 |
| commit | 7f807ee6d1ccd2838afec2f4674692159f893cb7 (patch) | |
| tree | e2c28198a9e3676bedc3f3615b2a30627856d138 | |
| parent | Improve ui file (diff) | |
| download | inkscape-7f807ee6d1ccd2838afec2f4674692159f893cb7.tar.gz inkscape-7f807ee6d1ccd2838afec2f4674692159f893cb7.zip | |
Fix dialog order
| -rw-r--r-- | src/ui/dialog/selectorsdialog.cpp | 2 | ||||
| -rw-r--r-- | src/ui/dialog/selectorsdialog.h | 2 | ||||
| -rw-r--r-- | src/verbs.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/dialog/selectorsdialog.cpp b/src/ui/dialog/selectorsdialog.cpp index 1f5f254a8..d942db4b6 100644 --- a/src/ui/dialog/selectorsdialog.cpp +++ b/src/ui/dialog/selectorsdialog.cpp @@ -618,7 +618,7 @@ void SelectorsDialog::_writeStyleElement() Inkscape::XML::Node *textNode = _getStyleTextNode(); textNode->setContent(styleContent.c_str()); - DocumentUndo::done(SP_ACTIVE_DOCUMENT, SP_VERB_DIALOG_STYLE, _("Edited style element.")); + DocumentUndo::done(SP_ACTIVE_DOCUMENT, SP_VERB_DIALOG_SELECTORS, _("Edited style element.")); _updating = false; g_debug("SelectorsDialog::_writeStyleElement(): | %s |", styleContent.c_str()); diff --git a/src/ui/dialog/selectorsdialog.h b/src/ui/dialog/selectorsdialog.h index a1aa187bb..1f9a25bc2 100644 --- a/src/ui/dialog/selectorsdialog.h +++ b/src/ui/dialog/selectorsdialog.h @@ -15,9 +15,9 @@ #ifndef SELECTORSDIALOG_H #define SELECTORSDIALOG_H +#include "ui/dialog/styledialog.h" #include "ui/dialog/desktop-tracker.h" #include "ui/dialog/dialog-manager.h" -#include "ui/dialog/styledialog.h" #include "ui/widget/panel.h" #include <gtkmm/dialog.h> #include <gtkmm/paned.h> diff --git a/src/verbs.h b/src/verbs.h index ab78bec13..d3a63320c 100644 --- a/src/verbs.h +++ b/src/verbs.h @@ -322,6 +322,7 @@ enum { SP_VERB_DIALOG_UNDO_HISTORY, SP_VERB_DIALOG_TEXT, SP_VERB_DIALOG_XML_EDITOR, + SP_VERB_DIALOG_SELECTORS, SP_VERB_DIALOG_FIND, SP_VERB_DIALOG_SPELLCHECK, SP_VERB_DIALOG_DEBUG, @@ -334,7 +335,6 @@ enum { SP_VERB_DIALOG_LAYERS, SP_VERB_DIALOG_OBJECTS, SP_VERB_DIALOG_STYLE, - SP_VERB_DIALOG_SELECTORS, SP_VERB_DIALOG_LIVE_PATH_EFFECT, SP_VERB_DIALOG_FILTER_EFFECTS, SP_VERB_DIALOG_SVG_FONTS, |
