From 5b1027bd6f7e193639a895c9c0d63462443d4566 Mon Sep 17 00:00:00 2001 From: Ken VanDine Date: Mon, 18 Apr 2011 10:35:21 -0400 Subject: releasing version 0.2.3-0ubuntu3 --- debian/changelog | 9 +++++++++ debian/patches/lp_762976.patch | 18 ++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 debian/patches/lp_762976.patch diff --git a/debian/changelog b/debian/changelog index 0b111a1..bd936c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +indicator-datetime (0.2.3-0ubuntu3) natty; urgency=low + + * debian/patches/lp_762976.patch + - Set minimum width for appointments to prevent continuous resizing + when the calendar is hiden and ensure there is enough of the + event description visible (LP: #762976) + + -- Ken VanDine Mon, 18 Apr 2011 10:05:41 -0400 + indicator-datetime (0.2.3-0ubuntu2) natty; urgency=low * debian/patches/lp_750671.patch diff --git a/debian/patches/lp_762976.patch b/debian/patches/lp_762976.patch new file mode 100644 index 0000000..e62280a --- /dev/null +++ b/debian/patches/lp_762976.patch @@ -0,0 +1,18 @@ +=== modified file 'src/indicator-datetime.c' +--- src/indicator-datetime.c 2011-04-13 19:32:18 +0000 ++++ src/indicator-datetime.c 2011-04-18 09:59:43 +0000 +@@ -1285,6 +1285,13 @@ + /* 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); ++ ++ GtkStyle * style = gtk_widget_get_style(GTK_WIDGET(mi_data->label)); ++ PangoContext * context = gtk_widget_get_pango_context(GTK_WIDGET(mi_data->label)); ++ gint length = measure_string(style, context, "GGGGGGGGGGGGGGG"); // 15 char wide string max ++ gtk_widget_set_size_request(GTK_WIDGET(mi_data->label), length, -1); // Set the min size in pixels ++ ++ 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); + + -- cgit v1.2.3