diff options
author | Ted Gould <ted@canonical.com> | 2009-09-17 16:13:16 -0500 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-09-17 16:13:16 -0500 |
commit | 3716880bb0026cf64366853f1b857dd92f0bbf8f (patch) | |
tree | 6c79c705e8cd5b138ba2f54c014d48fbf6ee4104 | |
parent | 843b92fec464890b60c098f4fd80d4b881cecec2 (diff) | |
parent | fa0e53c2e27f0c8ed7cbfa839265e91b4fdf8d67 (diff) | |
download | libdbusmenu-3716880bb0026cf64366853f1b857dd92f0bbf8f.tar.gz libdbusmenu-3716880bb0026cf64366853f1b857dd92f0bbf8f.tar.bz2 libdbusmenu-3716880bb0026cf64366853f1b857dd92f0bbf8f.zip |
Trying to double check the layout
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | libdbusmenu-glib/client.c | 17 |
2 files changed, 15 insertions, 8 deletions
diff --git a/debian/changelog b/debian/changelog index c96aee6..c84396b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +libdbusmenu (0.1.4-0ubuntu2~ppa2) UNRELEASED; urgency=low + + * Trying to double check the layout + + -- Ted Gould <ted@ubuntu.com> Thu, 17 Sep 2009 16:13:03 -0500 + libdbusmenu (0.1.4-0ubuntu2~ppa1) karmic; urgency=low * Signaling layout update on child moved diff --git a/libdbusmenu-glib/client.c b/libdbusmenu-glib/client.c index 4ae4f75..1bf4e19 100644 --- a/libdbusmenu-glib/client.c +++ b/libdbusmenu-glib/client.c @@ -66,6 +66,7 @@ struct _DbusmenuClientPrivate DBusGProxy * menuproxy; DBusGProxy * propproxy; DBusGProxyCall * layoutcall; + gboolean check_layout; DBusGProxy * dbusproxy; @@ -194,6 +195,7 @@ dbusmenu_client_init (DbusmenuClient *self) priv->menuproxy = NULL; priv->propproxy = NULL; priv->layoutcall = NULL; + priv->check_layout = FALSE; priv->dbusproxy = NULL; @@ -721,6 +723,11 @@ update_layout_cb (DBusGProxy * proxy, DBusGProxyCall * call, void * data) /* g_debug("Root is now: 0x%X", (unsigned int)priv->root); */ g_signal_emit(G_OBJECT(client), signals[LAYOUT_UPDATED], 0, TRUE); + if (priv->check_layout) { + priv->check_layout = FALSE; + update_layout(client); + } + return; } @@ -736,6 +743,7 @@ update_layout (DbusmenuClient * client) } if (priv->layoutcall != NULL) { + priv->check_layout = TRUE; return; } @@ -803,16 +811,9 @@ dbusmenu_client_get_root (DbusmenuClient * client) return NULL; } -#if 0 -/* Seems to be a bug in dbus-glib that assert here, I think because - multiple people try and grab it. We're going to comment this out - for now as everyone should be listening to the root changed signal - anyway. */ if (priv->layoutcall != NULL) { - /* Will end the current call and block on it's completion */ - update_layout_cb(priv->propproxy, priv->layoutcall, client); + priv->check_layout = TRUE; } -#endif return priv->root; } |