From 674b23e434415d3f407fcc55debfc47223c97cca Mon Sep 17 00:00:00 2001 From: Owen Taylor Date: Thu, 4 Feb 1999 16:12:35 +0000 Subject: [PATCH] Fixes to account for the changed structure of the windows of range Tue Feb 2 11:06:02 1999 Owen Taylor * gtk/gtkrange.c (gtk_range_style_set): Fixes to account for the changed structure of the windows of range widgets. --- gtk/gtkrange.c | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/gtk/gtkrange.c b/gtk/gtkrange.c index b81d213ed0..f9dae95363 100644 --- a/gtk/gtkrange.c +++ b/gtk/gtkrange.c @@ -1553,29 +1553,18 @@ gtk_range_style_set (GtkWidget *widget, range = GTK_RANGE (widget); - if (GTK_WIDGET_REALIZED (widget) && - !GTK_WIDGET_NO_WINDOW (widget)) + if (GTK_WIDGET_REALIZED (widget)) { - if (range->trough) - { - gtk_style_set_background (widget->style, range->trough, GTK_STATE_ACTIVE); - if (GTK_WIDGET_DRAWABLE (widget)) - gdk_window_clear (range->trough); - } - /* The draw will take care of the slider */ + if (range->trough) + gtk_style_set_background (widget->style, range->trough, GTK_STATE_ACTIVE); + if (range->slider) + gtk_style_set_background (widget->style, range->slider, GTK_STATE_NORMAL); + if (range->step_forw) - { - gtk_style_set_background (widget->style, range->step_forw, GTK_STATE_ACTIVE); - if (GTK_WIDGET_DRAWABLE (widget)) - gdk_window_clear (range->step_forw); - } + gtk_style_set_background (widget->style, range->step_forw, GTK_STATE_ACTIVE); + if (range->step_back) - { - gtk_style_set_background (widget->style, range->step_back, GTK_STATE_ACTIVE); - if (GTK_WIDGET_DRAWABLE (widget)) - gdk_window_clear (range->step_back); - } - gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL); + gtk_style_set_background (widget->style, range->step_back, GTK_STATE_ACTIVE); } }