aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--src/applet-main.c3
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 8ee2227..46dbf8c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-applet (0.1~ppa41) intrepid; urgency=low
+
+ * Putting on a handle
+ * Adding in a background function from panel-lib
+
+ -- Ted Gould <ted@ubuntu.com> Sun, 15 Feb 2009 22:58:46 -0600
+
indicator-applet (0.1~ppa40) intrepid; urgency=low
* Making the icons function check for null string before
diff --git a/src/applet-main.c b/src/applet-main.c
index c830230..57dc6b3 100644
--- a/src/applet-main.c
+++ b/src/applet-main.c
@@ -103,7 +103,7 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data)
/* Set panel options */
gtk_container_set_border_width(GTK_CONTAINER (applet), 0);
- panel_applet_set_flags(applet, PANEL_APPLET_EXPAND_MINOR);
+ panel_applet_set_flags(applet, PANEL_APPLET_EXPAND_MINOR | PANEL_APPLET_HAS_HANDLE);
/* Init some theme/icon stuff */
gtk_icon_theme_append_search_path(gtk_icon_theme_get_default(),
@@ -127,6 +127,7 @@ applet_fill_cb (PanelApplet * applet, const gchar * iid, gpointer data)
gtk_container_set_border_width(GTK_CONTAINER(menubar), 0);
gtk_container_add(GTK_CONTAINER(applet), menubar);
+ panel_applet_set_background_widget(applet, menubar);
gtk_widget_show(menubar);
/* load 'em */