aboutsummaryrefslogtreecommitdiff
path: root/src/applet-main.c
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-08-07 18:18:55 +0100
committerTed Gould <ted@canonical.com>2009-08-07 18:18:55 +0100
commitae15eee281b9e3a3df5d0a5d91450def1e76db4a (patch)
tree8cdad5d9b3f74e8c9f4ef8f226d245c0b39749d3 /src/applet-main.c
parenta3eb3eaa1500d9c9778f407c7e939a890aa9bdca (diff)
parent8fd9f27b56503242b97313e0f758c01195fe2f79 (diff)
downloadlibayatana-indicator-ae15eee281b9e3a3df5d0a5d91450def1e76db4a.tar.gz
libayatana-indicator-ae15eee281b9e3a3df5d0a5d91450def1e76db4a.tar.bz2
libayatana-indicator-ae15eee281b9e3a3df5d0a5d91450def1e76db4a.zip
Updating from upstream with two (count them) two applets
installed in the source.
Diffstat (limited to 'src/applet-main.c')
-rw-r--r--src/applet-main.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/applet-main.c b/src/applet-main.c
index 5af2763..3827b01 100644
--- a/src/applet-main.c
+++ b/src/applet-main.c
@@ -288,8 +288,12 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data)
const gchar * name;
while ((name = g_dir_read_name(dir)) != NULL) {
- if (load_module(name, menubar))
+ if (!g_strcmp0(name, "libstatus-users-session.so")) {
+ continue;
+ }
+ if (load_module(name, menubar)) {
indicators_loaded++;
+ }
}
g_dir_close (dir);
}