ayatana-commits team mailing list archive
-
ayatana-commits team
-
Mailing list archive
-
Message #01430
[Branch ~indicator-applet-developers/indicator-messages/trunk] Rev 186: Check for whether a desktop file is eclipsed when loaded.
Merge authors:
Ted Gould (ted)
Related merge proposals:
https://code.launchpad.net/~ted/indicator-messages/eclipse-on-desktop/+merge/23602
proposed by: Ted Gould (ted)
review: Approve - Cody Russell (bratsche)
------------------------------------------------------------
revno: 186 [merge]
committer: Ted Gould <ted@xxxxxxxx>
branch nick: trunk
timestamp: Sat 2010-04-17 12:59:27 -0500
message:
Check for whether a desktop file is eclipsed when loaded.
modified:
src/messages-service.c
--
lp:indicator-messages
https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk
Your team ayatana-commits is subscribed to branch lp:indicator-messages.
To unsubscribe from this branch go to https://code.launchpad.net/~indicator-applet-developers/indicator-messages/trunk/+edit-subscription
=== modified file 'src/messages-service.c'
--- src/messages-service.c 2010-04-16 15:05:43 +0000
+++ src/messages-service.c 2010-04-17 17:59:27 +0000
@@ -1362,6 +1362,14 @@
dbusmenu_menuitem_property_set_bool(ll->separator, DBUSMENU_MENUITEM_PROP_VISIBLE, FALSE);
}
+ /* Check to see if any of the current applications should
+ be eclipsing us. */
+ GList * server;
+ for (server = serverList; server != NULL; server = g_list_next(server)) {
+ serverList_t * slt = (serverList_t *)server->data;
+ check_eclipses(slt->menuitem);
+ }
+
resort_menu(root_menuitem);
check_hidden();
} else {