diff options
author | Moritz Bruder <[email protected]> | 2017-04-12 18:27:06 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2017-04-25 12:26:40 +0200 |
commit | 94cd1e26f4729f5ff116cf079170fa58450b7f53 (patch) | |
tree | 8d3230ff92aaf0006e0420a715c6d384bee08dc2 /data/org.mate.panel.gschema.xml.in | |
parent | 82ded619a7d07651bfcbec7dfbdb02437ae5f522 (diff) | |
download | mate-panel-94cd1e26f4729f5ff116cf079170fa58450b7f53.tar.bz2 mate-panel-94cd1e26f4729f5ff116cf079170fa58450b7f53.tar.xz |
Run dialog: Allow changing history size
A key has been added to the gsettings schema that controls history size.
The code of the run dialog has been changed to use that key.
Diffstat (limited to 'data/org.mate.panel.gschema.xml.in')
-rw-r--r-- | data/org.mate.panel.gschema.xml.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/data/org.mate.panel.gschema.xml.in b/data/org.mate.panel.gschema.xml.in index 241af62e..c58f6e19 100644 --- a/data/org.mate.panel.gschema.xml.in +++ b/data/org.mate.panel.gschema.xml.in @@ -23,7 +23,12 @@ <key name="history-mate-run" type="as"> <default>[]</default> <summary>History for "Run Application" dialog</summary> - <description>This is the list of commands used in "Run Application" dialog.</description> + <description>This is the list of commands used in "Run Application" dialog. The commands are sorted descendingly by recency (e.g., most recent command comes first).</description> + </key> + <key name="history-max-size-mate-run" type="u"> + <default>10</default> + <summary>Maximum history size for "Run Application" dialog</summary> + <description>Controls the maximum size of the history of the "Run Application" dialog. A value of 0 will disable the history.</description> </key> <key name="toplevel-id-list" type="as"> <default>[]</default> |