Skip to content

Commit

Permalink
Fix gsettings paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
darkshram committed Sep 20, 2017
1 parent 07cf0c2 commit 47becb3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions data/org.mate.seahorse.caja.gschema.xml
@@ -1,10 +1,10 @@
<schemalist>
<schema id="org.mate.seahorse.caja" path="/org.mate.seahorse.caja/">
<schema id="org.mate.seahorse.caja" path="/org/mate/seahorse/caja/">
<key name="package-extension" type="s">
<default>'.zip'</default>
<summary>File extension for packages</summary>
<description>File extension for packages when handling multiple files.</description>
</key>
</key>
<key name="separate-files" type="b">
<default>false</default>
<summary>Handle multiple files separately</summary>
Expand Down
2 changes: 1 addition & 1 deletion tool/seahorse-widget.c
Expand Up @@ -103,7 +103,7 @@ seahorse_widget_constructed (GObject *object)
/* Load window size for windows that aren't dialogs */
window = GTK_WINDOW (seahorse_widget_get_toplevel (self));
if (!GTK_IS_DIALOG (window)) {
path = g_strdup_printf ("/org.mate.seahorse.caja/windows/%s/", self->name);
path = g_strdup_printf ("/org/mate/seahorse/caja/windows/%s/", self->name);
self->settings = g_settings_new_with_path ("org.mate.seahorse.caja.window", path);
g_free (path);

Expand Down

0 comments on commit 47becb3

Please sign in to comment.