diff options
author | Ted Gould <ted@canonical.com> | 2009-02-25 15:04:37 -0600 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-02-25 15:04:37 -0600 |
commit | 9d3143b6f070144c9f8128e1f46ea696937a8e9b (patch) | |
tree | 41099dff7ebccea183dbe8effcc91953145ed794 /src/applet-main.c | |
parent | cf43323a0c7e114920935a64503f5d8f1bd12705 (diff) | |
parent | 3bc5b8e8105d698e7782c8090148dbe8f135161f (diff) | |
download | libayatana-indicator-9d3143b6f070144c9f8128e1f46ea696937a8e9b.tar.gz libayatana-indicator-9d3143b6f070144c9f8128e1f46ea696937a8e9b.tar.bz2 libayatana-indicator-9d3143b6f070144c9f8128e1f46ea696937a8e9b.zip |
Merging from core-dev branch
Diffstat (limited to 'src/applet-main.c')
-rw-r--r-- | src/applet-main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/applet-main.c b/src/applet-main.c index 57dc6b3..6efd33f 100644 --- a/src/applet-main.c +++ b/src/applet-main.c @@ -100,6 +100,12 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data) GtkWidget *menubar; gint i; gint indicators_loaded = 0; + + /* check if we are running stracciatella session */ + if (g_strcmp0(g_getenv("GDMSESSION"), "gnome-stracciatella") == 0) { + g_debug("Running stracciatella GNOME session, disabling myself"); + return TRUE; + } /* Set panel options */ gtk_container_set_border_width(GTK_CONTAINER (applet), 0); |