summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonsta <[email protected]>2015-03-05 13:08:35 +0300
committerStefano Karapetsas <[email protected]>2015-03-13 08:38:31 +0100
commit26b51510ab5bf8784950344836551de8a35afbdc (patch)
tree4eec70f412f65d268ed94e43cb5223073f1f5ba0
parenteecfa592f2161a8b17f16d975e958806cd4e4d13 (diff)
downloadmate-netbook-26b51510ab5bf8784950344836551de8a35afbdc.tar.bz2
mate-netbook-26b51510ab5bf8784950344836551de8a35afbdc.tar.xz
maximus: first connect to settings, then read them.
fixes the issue with GLib >= 2.43, https://git.gnome.org/browse/glib/commit/?id=8ff5668a458344da22d30491e3ce726d861b3619 Closes https://github.com/mate-desktop/mate-netbook/pull/19
-rw-r--r--maximus/maximus-app.c14
-rw-r--r--maximus/maximus-bind.c3
2 files changed, 8 insertions, 9 deletions
diff --git a/maximus/maximus-app.c b/maximus/maximus-app.c
index ea303d9..d824ad1 100644
--- a/maximus/maximus-app.c
+++ b/maximus/maximus-app.c
@@ -514,23 +514,21 @@ maximus_app_init (MaximusApp *app)
priv->settings = g_settings_new (APP_SCHEMA);
- priv->exclude_class_list= g_settings_get_strv (priv->settings, APP_EXCLUDE_CLASS);
g_signal_connect (priv->settings, "changed::" APP_EXCLUDE_CLASS,
G_CALLBACK (on_exclude_class_changed), app);
-
- priv->undecorate = g_settings_get_boolean (priv->settings, APP_UNDECORATE);
g_signal_connect (priv->settings, "changed::" APP_UNDECORATE,
G_CALLBACK (on_app_undecorate_changed), app);
+ g_signal_connect (priv->settings, "changed::" APP_NO_MAXIMIZE,
+ G_CALLBACK (on_app_no_maximize_changed), app);
+ priv->exclude_class_list = g_settings_get_strv (priv->settings, APP_EXCLUDE_CLASS);
+ priv->undecorate = g_settings_get_boolean (priv->settings, APP_UNDECORATE);
+ priv->no_maximize = g_settings_get_boolean (priv->settings, APP_NO_MAXIMIZE);
+ g_print ("no maximize: %s\n", priv->no_maximize ? "true" : "false");
priv->screen = screen = wnck_screen_get_default ();
g_signal_connect (screen, "window-opened",
G_CALLBACK (on_window_opened), app);
-
- priv->no_maximize = g_settings_get_boolean (priv->settings, APP_NO_MAXIMIZE);
- g_print ("no maximize: %s\n", priv->no_maximize ? "true" : "false");
- g_signal_connect (priv->settings, "changed::" APP_NO_MAXIMIZE,
- G_CALLBACK (on_app_no_maximize_changed), app);
}
MaximusApp *
diff --git a/maximus/maximus-bind.c b/maximus/maximus-bind.c
index 7fbcefc..c7d3487 100644
--- a/maximus/maximus-bind.c
+++ b/maximus/maximus-bind.c
@@ -474,10 +474,11 @@ maximus_bind_init (MaximusBind *bind)
tomboy_keybinder_init ();
- priv->binding = g_settings_get_string (priv->settings, BIND_EXCLUDE_CLASS);
g_signal_connect (priv->settings, "changed::" BIND_EXCLUDE_CLASS,
G_CALLBACK (on_binding_changed), bind);
+ priv->binding = g_settings_get_string (priv->settings, BIND_EXCLUDE_CLASS);
+
if (binding_is_valid (priv->binding))
tomboy_keybinder_bind (priv->binding,
(TomboyBindkeyHandler)on_binding_activated,