diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2018-11-17 19:34:37 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2018-11-18 12:39:15 +0000 |
| commit | 7950f5162c81d8d791d6e3d7a9e540eb753cc5ea (patch) | |
| tree | ce59ff90d6ea6446773415a984e0e594208817c1 | |
| parent | Fix FTBFS with dbus (diff) | |
| download | inkscape-7950f5162c81d8d791d6e3d7a9e540eb753cc5ea.tar.gz inkscape-7950f5162c81d8d791d6e3d7a9e540eb753cc5ea.zip | |
Add missing xml file.
| -rw-r--r-- | share/ui/inkscape-application.xml | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/share/ui/inkscape-application.xml b/share/ui/inkscape-application.xml new file mode 100644 index 000000000..ab9d946ee --- /dev/null +++ b/share/ui/inkscape-application.xml @@ -0,0 +1,31 @@ +<interface> + <requires lib="gtk+" version="3.4"/> + + <!-- Application menubar --> + <menu id="menu-application"> + <submenu> + <attribute name="label" translatable="yes">_File</attribute> + <section> + <item> + <attribute name="label" translatable="yes">_New</attribute> + <attribute name="action">app.new</attribute> + <attribute name="accel"><Primary>n</attribute> + </item> + <item> + <attribute name="label" translatable="yes">_Quit</attribute> + <attribute name="action">app.quit</attribute> + <attribute name="accel"><Primary>q</attribute> + </item> + </section> + </submenu> + <submenu> + <attribute name="label" translatable="yes">_Help</attribute> + <section> + <item> + <attribute name="label" translatable="yes">_About</attribute> + <attribute name="action">app.about</attribute> + </item> + </section> + </submenu> + </menu> +</interface> |
