aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/ephy-notebook.c1
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e9d5bc202..b4d5d919f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-12 Ryan Lortie <desrt@desrt.ca>
+
+ * src/ephy-notebook.c (build_tab_label): Remove redundant
+ gtk_button_set_relief call. Fixes bug #372760.
+
2006-11-10 Wouter Bolsterlee <wbolster@cvs.gnome.org>
* autogen.sh: Add useful warning when gnome-autogen.sh
diff --git a/src/ephy-notebook.c b/src/ephy-notebook.c
index 91c798bf2..d2411b6f0 100644
--- a/src/ephy-notebook.c
+++ b/src/ephy-notebook.c
@@ -645,7 +645,6 @@ build_tab_label (EphyNotebook *nb, EphyTab *tab)
GTK_RELIEF_NONE);
/* don't allow focus on the close button */
gtk_button_set_focus_on_click (GTK_BUTTON (close_button), FALSE);
- gtk_button_set_relief (GTK_BUTTON (close_button), GTK_RELIEF_NONE);
rcstyle = gtk_rc_style_new ();
rcstyle->xthickness = rcstyle->ythickness = 0;