diff options
author | Sorokin Alexei <[email protected]> | 2016-02-20 18:39:53 +0300 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-21 11:51:49 +0100 |
commit | bd3d7bc04d864d37e054b9e51fb48cbabb7e18f7 (patch) | |
tree | 50c9115518956d54e451e0a57c1f997fc61862cb /data/org.mate.panel.menubar.gschema.xml.in | |
parent | c29a88ff648af2e07a7cd657c027f1e5bf665ed6 (diff) | |
download | mate-panel-bd3d7bc04d864d37e054b9e51fb48cbabb7e18f7.tar.bz2 mate-panel-bd3d7bc04d864d37e054b9e51fb48cbabb7e18f7.tar.xz |
add gschema key for setting menu icon sizes
Diffstat (limited to 'data/org.mate.panel.menubar.gschema.xml.in')
-rw-r--r-- | data/org.mate.panel.menubar.gschema.xml.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/data/org.mate.panel.menubar.gschema.xml.in b/data/org.mate.panel.menubar.gschema.xml.in index 0c707412..71cd4e97 100644 --- a/data/org.mate.panel.menubar.gschema.xml.in +++ b/data/org.mate.panel.menubar.gschema.xml.in @@ -1,4 +1,14 @@ <schemalist gettext-domain="@GETTEXT_PACKAGE@"> + + <enum id="org.mate.panel.menubar.icon-size"> + <value nick="default" value="-1"/> + <value nick="16px" value="16"/> + <value nick="22px" value="22"/> + <value nick="24px" value="24"/> + <value nick="32px" value="32"/> + <value nick="48px" value="48"/> + </enum> + <schema id="org.mate.panel.menubar" path="/org/mate/panel/menubar/"> <key name="show-applications" type="b"> <default>true</default> @@ -25,5 +35,15 @@ <summary>Icon to show in menu bar</summary> <description>Set the theme icon name to use in menu bar.</description> </key> + <key name="icon-size" enum="org.mate.panel.menubar.icon-size"> + <default>'default'</default> + <summary>Menu bar icon size</summary> + <description>Set the size of an icon used in menu bar. The panel must be restarted for this to take effect.</description> + </key> + <key name="item-icon-size" enum="org.mate.panel.menubar.icon-size"> + <default>'default'</default> + <summary>Menu items icon size</summary> + <description>Set the size of icons used in the menu. The panel must be restarted for this to take effect.</description> + </key> </schema> </schemalist> |