aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--shell/ChangeLog6
-rw-r--r--shell/e-gray-bar.c26
2 files changed, 19 insertions, 13 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog
index 7430442383..1ad77d0682 100644
--- a/shell/ChangeLog
+++ b/shell/ChangeLog
@@ -5,12 +5,6 @@
2001-08-13 Ettore Perazzoli <ettore@ximian.com>
- * e-gray-bar.c (impl_style_set): Removed.
- (class_init): Don't override that method anymore.
- (e_gray_bar_new): Call `endarken_style()' here instead.
-
-2001-08-13 Ettore Perazzoli <ettore@ximian.com>
-
[Fix #7109, Evolution crashes when the splash screen dialog is
killed by clicking the "X" button.]
diff --git a/shell/e-gray-bar.c b/shell/e-gray-bar.c
index be8daa50c5..1058bf5740 100644
--- a/shell/e-gray-bar.c
+++ b/shell/e-gray-bar.c
@@ -44,7 +44,6 @@ endarken_style (GtkWidget *widget)
GtkStyle *style;
GtkRcStyle *new_rc_style;
int i;
- static int first_time = TRUE;
style = widget->style;
@@ -67,16 +66,30 @@ endarken_style (GtkWidget *widget)
new_rc_style->color_flags[i] = GTK_RC_BG | GTK_RC_FG | GTK_RC_BASE | GTK_RC_TEXT;
}
- if (first_time) {
- gtk_widget_modify_style (widget, new_rc_style);
- first_time = FALSE;
- }
+ gtk_widget_modify_style (widget, new_rc_style);
gtk_rc_style_unref (new_rc_style);
}
static void
+impl_style_set (GtkWidget *widget,
+ GtkStyle *previous_style)
+{
+ static int in_style_set = 0;
+
+ if (in_style_set > 0)
+ return;
+
+ in_style_set ++;
+
+ endarken_style (widget);
+
+ in_style_set --;
+}
+
+
+static void
class_init (GtkObjectClass *object_class)
{
GtkWidgetClass *widget_class;
@@ -84,6 +97,7 @@ class_init (GtkObjectClass *object_class)
parent_class = gtk_type_class (PARENT_TYPE);
widget_class = GTK_WIDGET_CLASS (object_class);
+ widget_class->style_set = impl_style_set;
}
static void
@@ -99,8 +113,6 @@ e_gray_bar_new (void)
new = gtk_type_new (e_gray_bar_get_type ());
- endarken_style (new);
-
return new;
}