aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-10-28 05:07:02 +0800
committerChris Lahey <clahey@src.gnome.org>2001-10-28 05:07:02 +0800
commitae98b77f3a7516a133b227832041d66ef12a7e0e (patch)
tree1470ad73454e2d842e5c40c0a49b6b56c1f049d2 /addressbook
parent0d56746e85555e41450acf5624e57281c9520d30 (diff)
downloadgsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar.gz
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar.bz2
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar.lz
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar.xz
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.tar.zst
gsoc2013-evolution-ae98b77f3a7516a133b227832041d66ef12a7e0e.zip
Bumped required version of gal to 0.15.99.6.
2001-10-27 Christopher James Lahey <clahey@ximian.com> * configure.in: Bumped required version of gal to 0.15.99.6. From addressbook/ChangeLog: 2001-10-27 Christopher James Lahey <clahey@ximian.com> * gui/component/select-names/e-select-names.c (e_select_names_add_section): Turned off use_ellipsis (it breaks emulate_label_resize) and on emulate_label_resize. svn path=/trunk/; revision=14228
Diffstat (limited to 'addressbook')
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog
index ad1061645d..d756e3deea 100644
--- a/addressbook/ChangeLog
+++ b/addressbook/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-27 Christopher James Lahey <clahey@ximian.com>
+
+ * gui/component/select-names/e-select-names.c
+ (e_select_names_add_section): Turned off use_ellipsis (it breaks
+ emulate_label_resize) and on emulate_label_resize.
+
2001-10-27 Jon Trowbridge <trow@ximian.com>
* gui/component/select-names/e-select-names-completion.c
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 13d2d956d0..a3245447b2 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -812,14 +812,14 @@ e_select_names_add_section(ESelectNames *e_select_names, char *name, char *id, E
"draw_button", TRUE,
"editable", FALSE,
"text", "",
- "use_ellipsis", TRUE,
+ "use_ellipsis", FALSE,
"justification", GTK_JUSTIFY_CENTER,
NULL);
- gtk_widget_set_usize (label, 40, 0);
label_text = g_strconcat (child->title, " ->", NULL);
gtk_object_set (GTK_OBJECT (label),
"text", label_text,
+ "emulate_label_resize", TRUE,
NULL);
g_free (label_text);
gtk_container_add (GTK_CONTAINER (button), label);