From 791c2bec7ed03c99d3139aae43c298899c008c7e Mon Sep 17 00:00:00 2001 From: Ettore Perazzoli Date: Thu, 16 Aug 2001 22:28:24 +0000 Subject: Set the horizontal usize of the entry to 4. * e-search-bar.c (activate_by_subitems): Set the horizontal usize of the entry to 4. svn path=/trunk/; revision=12132 --- widgets/misc/ChangeLog | 5 +++++ widgets/misc/e-search-bar.c | 1 + 2 files changed, 6 insertions(+) diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index 68e5d3df38..36aeecaa16 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2001-08-16 Ettore Perazzoli + + * e-search-bar.c (activate_by_subitems): Set the horizontal usize + of the entry to 4. + 2001-08-16 Jon Trowbridge * e-filter-bar.c (option_changed): Adjusted for renamed ESearchBar diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c index f66a42c325..9f6d46a2bb 100644 --- a/widgets/misc/e-search-bar.c +++ b/widgets/misc/e-search-bar.c @@ -136,6 +136,7 @@ activate_by_subitems (ESearchBar *esb, gint item_id, ESearchBarSubitem *subitems if (esb->entry == NULL) { esb->entry = gtk_entry_new(); + gtk_widget_set_usize (esb->entry, 4, -1); gtk_object_ref (GTK_OBJECT (esb->entry)); gtk_signal_connect (GTK_OBJECT (esb->entry), "activate", GTK_SIGNAL_FUNC (entry_activated_cb), esb); -- cgit