diff options
author | Stefan Jeske <stefan@src.gnome.org> | 1998-11-07 15:45:27 +0000 |
---|---|---|
committer | Stefan Jeske <stefan@src.gnome.org> | 1998-11-07 15:45:27 +0000 |
commit | cf1d80fd80160f8831c6bc6751126d4679ee5ddb (patch) | |
tree | 897b8bbb3480e41012ae942f5c92351a6fa4c102 /gtk | |
parent | 9d874ec20a8f42a34a5f35fdfff9bf2164bc8420 (diff) | |
download | gtk+-cf1d80fd80160f8831c6bc6751126d4679ee5ddb.tar.gz |
Set background of title button window to GTK_STATE_NORMAL instead of
* gtk/gtkclist.c (gtk_clist_realize): Set background of
title button window to GTK_STATE_NORMAL instead of
GTK_STATE_SELECTED to avoid ugly flicker.
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkclist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkclist.c b/gtk/gtkclist.c index 14ecd76ec6..f68e7ac93a 100644 --- a/gtk/gtkclist.c +++ b/gtk/gtkclist.c @@ -4153,7 +4153,7 @@ gtk_clist_realize (GtkWidget *widget) gdk_window_set_user_data (clist->title_window, clist); gtk_style_set_background (widget->style, clist->title_window, - GTK_STATE_SELECTED); + GTK_STATE_NORMAL); gdk_window_show (clist->title_window); /* set things up so column buttons are drawn in title window */ |