diff options
author | infirit <[email protected]> | 2013-06-29 22:18:26 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2013-06-29 22:22:16 +0200 |
commit | c36eeddc49f116d5d860f2cd13eb94996489f70b (patch) | |
tree | 8378775fb17785017493804dc20b2a2480d67f30 | |
parent | c1c61af0b7d286aefdff7466f2d5e26903798654 (diff) | |
download | engrampa-c36eeddc49f116d5d860f2cd13eb94996489f70b.tar.bz2 engrampa-c36eeddc49f116d5d860f2cd13eb94996489f70b.tar.xz |
Move keys to the correct schema
The keys update, recursive and no-symlinks are in the wrong schema,
in org.mate.engrampa.dialogs.extract instead of org.mate.engrampa.dialogs.add
Fixes https://github.com/mate-desktop/mate-file-archiver/issues/19
-rw-r--r-- | data/org.mate.engrampa.gschema.xml.in | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/data/org.mate.engrampa.gschema.xml.in b/data/org.mate.engrampa.gschema.xml.in index 16fe3f2..9efa7d5 100644 --- a/data/org.mate.engrampa.gschema.xml.in +++ b/data/org.mate.engrampa.gschema.xml.in @@ -148,15 +148,6 @@ <default>true</default> <summary>Recreate the folders stored in the archive</summary> </key> - <key name="update" type="b"> - <default>false</default> - </key> - <key name="recursive" type="b"> - <default>true</default> - </key> - <key name="no-symlinks" type="b"> - <default>false</default> - </key> </schema> <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.add" path="/org/mate/engrampa/dialogs/add/"> <key name="current-folder" type="s"> @@ -174,7 +165,16 @@ <key name="exclude-folders" type="s"> <default>''</default> </key> - </schema> + <key name="update" type="b"> + <default>false</default> + </key> + <key name="recursive" type="b"> + <default>true</default> + </key> + <key name="no-symlinks" type="b"> + <default>false</default> + </key> +</schema> <schema gettext-domain="@GETTEXT_PACKAGE@" id="org.mate.engrampa.dialogs.batch-add" path="/org/mate/engrampa/dialogs/batch-add/"> <key name="default-extension" type="s"> <default>'.tar.gz'</default> |