aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--filter/ChangeLog7
-rw-r--r--filter/e-search-bar.c6
-rw-r--r--widgets/misc/e-search-bar.c6
3 files changed, 15 insertions, 4 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;
}
}
+
+
diff --git a/widgets/misc/e-search-bar.c b/widgets/misc/e-search-bar.c
index fc34d5e300..0b0e34fc86 100644
--- a/widgets/misc/e-search-bar.c
+++ b/widgets/misc/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;
}
}
+
+