aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--src/indicator-messages.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index a3ff5ea..1e9b3a7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+indicator-messages (0.2.3-0ubuntu1~ppa3~minwidth1) UNRELEASED; urgency=low
+
+ * Putting in a min-width for launchers
+
+ -- Ted Gould <ted@ubuntu.com> Wed, 23 Sep 2009 15:53:26 -0500
+
indicator-messages (0.2.3-0ubuntu1~ppa2) karmic; urgency=low
* Merging in updated trunk
diff --git a/src/indicator-messages.c b/src/indicator-messages.c
index a3f22aa..e180992 100644
--- a/src/indicator-messages.c
+++ b/src/indicator-messages.c
@@ -241,6 +241,7 @@ new_launcher_item (DbusmenuMenuitem * newitem, DbusmenuMenuitem * parent, Dbusme
GtkWidget * dsc_label = gtk_label_new("");
gtk_misc_set_alignment(GTK_MISC(dsc_label), 0.05, 0.5);
gtk_label_set_ellipsize(GTK_LABEL(dsc_label), PANGO_ELLIPSIZE_END);
+ gtk_widget_set_size_request(dsc_label, 250, -1);
gchar * markup = g_markup_printf_escaped("<span font-size=\"smaller\">%s</span>", dbusmenu_menuitem_property_get(newitem, LAUNCHER_MENUITEM_PROP_APP_DESC));
gtk_label_set_markup(GTK_LABEL(dsc_label), markup);
g_free(markup);