aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--addressbook/ChangeLog6
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c4
-rw-r--r--configure.in2
4 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ea3d77aa4..c099f77713 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-10-27 Christopher James Lahey <clahey@ximian.com>
+
+ * configure.in: Bumped required version of gal to 0.15.99.6.
+
2001-10-27 Dan Winship <danw@ximian.com>
* configure.in: Change the help string on "--enable-nntp" to
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);
diff --git a/configure.in b/configure.in
index 9c0a9d7cf9..64f60fd400 100644
--- a/configure.in
+++ b/configure.in
@@ -571,7 +571,7 @@ EVO_CHECK_LIB(Bonobo, bonobox, 1.0.3)
EVO_CHECK_LIB(OAF, oaf, 0.6.2)
EVO_CHECK_LIB(libglade, libglade, 0.14)
EVO_CHECK_LIB(gdk-pixbuf with GNOME canvas support, gnomecanvaspixbuf, 0.9.0)
-EVO_CHECK_LIB(GAL, gal, 0.15.99.5)
+EVO_CHECK_LIB(GAL, gal, 0.15.99.6)
EVO_CHECK_LIB(GtkHTML, gtkhtml, 0.15)
EVO_CHECK_LIB(GNOME-VFS, vfs, 1.0)
EVO_CHECK_LIB(libxml, xml, 1.8.10, 2.0)