aboutsummaryrefslogtreecommitdiffstats
path: root/filter
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@helixcode.com>2000-11-10 06:21:07 +0800
committerAnna Dirks <anna@src.gnome.org>2000-11-10 06:21:07 +0800
commitb4927628cf36295eb99b3ed5a002e30fd297d23e (patch)
treee513021839520aa93b5010a0c773cacfd26b170a /filter
parentb24160aa2cedb773bbd6855144bfaa4aaa449bf4 (diff)
downloadgsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar.gz
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar.bz2
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar.lz
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar.xz
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.tar.zst
gsoc2013-evolution-b4927628cf36295eb99b3ed5a002e30fd297d23e.zip
Fixed two spacing problems: first, changed the spacing around the end of
2000-11-08 Anna Marie Dirks <anna@helixcode.com> * e-search-bar.c: Fixed two spacing problems: first, changed the spacing around the end of the text-entry widget so that the text entry is always aligned with the beginning of the scrollbar; second, trimmed down the space between the widgets in the search bar. svn path=/trunk/; revision=6522
Diffstat (limited to 'filter')
-rw-r--r--filter/ChangeLog7
-rw-r--r--filter/e-search-bar.c6
2 files changed, 11 insertions, 2 deletions
diff --git a/filter/ChangeLog b/filter/ChangeLog
index 0e358b5d43..c6e3602cf1 100644
--- a/filter/ChangeLog
+++ b/filter/ChangeLog
@@ -1,3 +1,10 @@
+2000-11-08 Anna Marie Dirks <anna@helixcode.com>
+ * e-search-bar.c: Fixed two spacing problems: first, changed
+ the spacing around the end of the text-entry widget so that
+ the text entry is always aligned with the beginning of the scrollbar;
+ second, trimmed down the space between the widgets in the search bar.
+
+
2000-11-06 Not Zed <NotZed@HelixCode.com>
* filter-driver.c (do_flag): you shouldn't use an integer to
diff --git a/filter/e-search-bar.c b/filter/e-search-bar.c
index fc34d5e300..0b0e34fc86 100644
--- a/filter/e-search-bar.c
+++ b/filter/e-search-bar.c
@@ -213,7 +213,7 @@ e_search_bar_init (ESearchBar *esb)
{
GtkWidget *spacer;
- gtk_box_set_spacing(GTK_BOX(esb), GNOME_PAD);
+ gtk_box_set_spacing(GTK_BOX(esb), 1);
esb->menubar = gtk_menu_bar_new();
gtk_widget_show(esb->menubar);
@@ -233,7 +233,7 @@ e_search_bar_init (ESearchBar *esb)
spacer = gtk_drawing_area_new();
gtk_widget_show(spacer);
gtk_box_pack_start(GTK_BOX(esb), spacer, FALSE, FALSE, 0);
- gtk_widget_set_usize(spacer, 100, 1);
+ gtk_widget_set_usize(spacer, 15, 1);
}
static void
@@ -294,3 +294,5 @@ e_search_bar_set_arg (GtkObject *object, GtkArg *arg, guint arg_id)
break;
}
}
+
+