aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog7
-rw-r--r--debian/patches/lp_750671.patch12
2 files changed, 19 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog
index d0c522c..0b111a1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+indicator-datetime (0.2.3-0ubuntu2) natty; urgency=low
+
+ * debian/patches/lp_750671.patch
+ - ellipsize long appointment descriptions (LP: #750671)
+
+ -- Ken VanDine <ken.vandine@canonical.com> Fri, 15 Apr 2011 10:00:41 -0400
+
indicator-datetime (0.2.3-0ubuntu1) natty; urgency=low
* New upstream release.
diff --git a/debian/patches/lp_750671.patch b/debian/patches/lp_750671.patch
new file mode 100644
index 0000000..676f4f1
--- /dev/null
+++ b/debian/patches/lp_750671.patch
@@ -0,0 +1,12 @@
+=== modified file 'src/indicator-datetime.c'
+--- src/indicator-datetime.c 2011-04-13 19:32:18 +0000
++++ src/indicator-datetime.c 2011-04-15 13:23:28 +0000
+@@ -1285,6 +1285,7 @@
+ /* Label, probably a username, chat room or mailbox name */
+ mi_data->label = gtk_label_new(dbusmenu_menuitem_property_get(newitem, APPOINTMENT_MENUITEM_PROP_LABEL));
+ gtk_misc_set_alignment(GTK_MISC(mi_data->label), 0.0, 0.5);
++ gtk_label_set_ellipsize(GTK_LABEL(mi_data->label), PANGO_ELLIPSIZE_END);
+ gtk_box_pack_start(GTK_BOX(hbox), mi_data->label, TRUE, TRUE, 0);
+ gtk_widget_show(mi_data->label);
+
+