diff --git a/ChangeLog b/ChangeLog index 33cc004d41..06804a2a22 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-03-11 Mark McLoughlin + + * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT + fg color for drawing the expander when prelit. Fixes problem + with the HighContrast theme: bug #136789. + 2004-03-11 Federico Mena Quintero Fix #135912 and #135913. diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 33cc004d41..06804a2a22 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,9 @@ +2004-03-11 Mark McLoughlin + + * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT + fg color for drawing the expander when prelit. Fixes problem + with the HighContrast theme: bug #136789. + 2004-03-11 Federico Mena Quintero Fix #135912 and #135913. diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 33cc004d41..06804a2a22 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,9 @@ +2004-03-11 Mark McLoughlin + + * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT + fg color for drawing the expander when prelit. Fixes problem + with the HighContrast theme: bug #136789. + 2004-03-11 Federico Mena Quintero Fix #135912 and #135913. diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 33cc004d41..06804a2a22 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,9 @@ +2004-03-11 Mark McLoughlin + + * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT + fg color for drawing the expander when prelit. Fixes problem + with the HighContrast theme: bug #136789. + 2004-03-11 Federico Mena Quintero Fix #135912 and #135913. diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 33cc004d41..06804a2a22 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,9 @@ +2004-03-11 Mark McLoughlin + + * gtk/gtkstyle.c: (gtk_default_draw_expander): Use the PRELIGHT + fg color for drawing the expander when prelit. Fixes problem + with the HighContrast theme: bug #136789. + 2004-03-11 Federico Mena Quintero Fix #135912 and #135913. diff --git a/gtk/gtkstyle.c b/gtk/gtkstyle.c index fc8ae92c4c..91d7679a61 100644 --- a/gtk/gtkstyle.c +++ b/gtk/gtkstyle.c @@ -5015,7 +5015,7 @@ gtk_default_draw_expander (GtkStyle *style, if (state_type == GTK_STATE_PRELIGHT) { - gtk_style_draw_polygon_with_gc (window, style->fg_gc[GTK_STATE_NORMAL], + gtk_style_draw_polygon_with_gc (window, style->fg_gc[GTK_STATE_PRELIGHT], 1, TRUE, points, 3); } else if (state_type == GTK_STATE_ACTIVE)