diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1998-02-13 05:26:33 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-02-13 05:26:33 +0000 |
commit | 041983a77631c4cf0249caa86c91f2f10ca33c64 (patch) | |
tree | 9112372189d27b7d0255c2768d1eaa6e372b25ba /gtk/gtkinputdialog.c | |
parent | 888470ee29e6956efc4122bdb9c24a1af0344079 (diff) | |
download | gdk-pixbuf-041983a77631c4cf0249caa86c91f2f10ca33c64.tar.gz |
Change style->white to style->base[] where appropriate. Change the default
* gtk/gtkentry.c gtk/gtkinputdialog.c gtk/gtklist.c
gtk/gtklistitem.c gtktree.c gtk/gtktreeitem.c testgtkrc:
Change style->white to style->base[] where appropriate.
Change the default style to make this apparent. (Yes, it's
ugly... it can be removed later)
Diffstat (limited to 'gtk/gtkinputdialog.c')
-rw-r--r-- | gtk/gtkinputdialog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkinputdialog.c b/gtk/gtkinputdialog.c index 380f82c83..44c1cec9b 100644 --- a/gtk/gtkinputdialog.c +++ b/gtk/gtkinputdialog.c @@ -529,7 +529,7 @@ gtk_input_dialog_fill_axes(GtkInputDialog *inputd, GdkDeviceInfo *info) gtk_widget_realize (inputd->axis_list); gdk_window_set_background (inputd->axis_list->window, - &inputd->axis_list->style->white); + &inputd->axis_list->style->base[GTK_STATE_NORMAL]); for (i=GDK_AXIS_X;i<GDK_AXIS_LAST;i++) { @@ -664,7 +664,7 @@ gtk_input_dialog_fill_keys(GtkInputDialog *inputd, GdkDeviceInfo *info) gtk_widget_realize (inputd->keys_list); gdk_window_set_background (inputd->keys_list->window, - &inputd->keys_list->style->white); + &inputd->keys_list->style->base[GTK_STATE_NORMAL]); for (i=0;i<info->num_keys;i++) { |