diff options
| author | su_v <suv-sf@users.sourceforge.net> | 2015-01-25 11:26:05 +0000 |
|---|---|---|
| committer | ~suv <suv-sf@users.sourceforge.net> | 2015-01-25 11:26:05 +0000 |
| commit | ad734745461e14abac56665429c4f91f1bdea286 (patch) | |
| tree | 17decaa1a36548397423f3b7870becef788afe6c /src | |
| parent | Fix for bug #1130348 (Paint bucket filling multiple regions crashes when scro... (diff) | |
| download | inkscape-ad734745461e14abac56665429c4f91f1bdea286.tar.gz inkscape-ad734745461e14abac56665429c4f91f1bdea286.zip | |
Simplify 'File' menu structure (remove submenu 'New').(Bug #1414384)
(bzr r13874)
Diffstat (limited to 'src')
| -rw-r--r-- | src/menus-skeleton.h | 6 | ||||
| -rw-r--r-- | src/verbs.cpp | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/menus-skeleton.h b/src/menus-skeleton.h index 18a26d82c..f5e815bf6 100644 --- a/src/menus-skeleton.h +++ b/src/menus-skeleton.h @@ -14,10 +14,8 @@ static char const menus_skeleton[] = " xmlns:inkscape=\"http://www.inkscape.org/namespaces/inkscape\">\n" "\n" " <submenu name=\"" N_("_File") "\">\n" -" <submenu name=\"" N_("_New") "\">\n" -" <verb verb-id=\"FileNew\" />\n" -" <verb verb-id=\"FileTemplates\" />\n" -" </submenu>\n" +" <verb verb-id=\"FileNew\" />\n" +" <verb verb-id=\"FileTemplates\" />\n" " <verb verb-id=\"FileOpen\" />\n" " <recent-file-list/>\n" " <verb verb-id=\"FileRevert\" />\n" diff --git a/src/verbs.cpp b/src/verbs.cpp index 231e258d6..5febeeb7c 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -2428,7 +2428,7 @@ Verb *Verb::_base_verbs[] = { new Verb(SP_VERB_NONE, "None", NC_("Verb", "None"), N_("Does nothing"), NULL, NULL), // File - new FileVerb(SP_VERB_FILE_NEW, "FileNew", N_("Default"), N_("Create new document from the default template"), + new FileVerb(SP_VERB_FILE_NEW, "FileNew", N_("_New"), N_("Create new document from the default template"), INKSCAPE_ICON("document-new")), new FileVerb(SP_VERB_FILE_OPEN, "FileOpen", N_("_Open..."), N_("Open an existing document"), INKSCAPE_ICON("document-open")), @@ -2458,7 +2458,7 @@ Verb *Verb::_base_verbs[] = { new FileVerb(SP_VERB_FILE_CLOSE_VIEW, "FileClose", N_("_Close"), N_("Close this document window"), INKSCAPE_ICON("window-close")), new FileVerb(SP_VERB_FILE_QUIT, "FileQuit", N_("_Quit"), N_("Quit Inkscape"), INKSCAPE_ICON("application-exit")), - new FileVerb(SP_VERB_FILE_TEMPLATES, "FileTemplates", N_("_Templates..."), + new FileVerb(SP_VERB_FILE_TEMPLATES, "FileTemplates", N_("New from _Template..."), N_("Create new project from template"), INKSCAPE_ICON("dialog-templates")), // Edit |
