diff options
author | Alex Larsson <alexl@redhat.com> | 2001-09-19 00:49:52 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2001-09-19 00:49:52 +0000 |
commit | 1a46d3d534698081b67e56e5510f521e45bfcbd1 (patch) | |
tree | f673445d694db4b1c804815f99df96f05eec1afc /gtk/gtkradiobutton.c | |
parent | 07fd24542186c9d2e30a8b08381cab6285d94725 (diff) | |
download | gtk+-1a46d3d534698081b67e56e5510f521e45bfcbd1.tar.gz |
Don't draw with GTK_STATE_ACTIVE.
2001-09-18 Alex Larsson <alexl@redhat.com>
* gtk/gtkcheckbutton.c:
* gtk/gtkradiobutton.c:
Don't draw with GTK_STATE_ACTIVE.
* gtk/gtkclist.c:
* gtk/gtkctree.c:
Draw lines between rows with base_gc[GTK_STATE_NORMAL].
* gtk/gtktextdisplay.c:
Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
unfocused with base_gc [GTK_STATE_ACTIVE].
* gtk/gtkentry.c:
Add select all menu-item.
Default cursor color is red.
Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
unfocused with base_gc [GTK_STATE_ACTIVE].
* gtk/gtklabel.[ch]:
Add keynav + menu to selectable lables.
Focused selection is drawn with base_gc [GTK_STATE_SELECTED] and
unfocused with base_gc [GTK_STATE_ACTIVE].
* gtk/gtkfilesel.c:
Add drag and drop support.
* gtk/gtkstyle.c:
(This was checked in earlier)
New default values for text/base SELECTED and ACTIVE
Diffstat (limited to 'gtk/gtkradiobutton.c')
-rw-r--r-- | gtk/gtkradiobutton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c index cc9b573e2f..521b0bf12b 100644 --- a/gtk/gtkradiobutton.c +++ b/gtk/gtkradiobutton.c @@ -463,7 +463,7 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button, x = widget->allocation.x + widget->allocation.width - (indicator_size + x - widget->allocation.x); gtk_paint_option (widget->style, widget->window, - GTK_WIDGET_STATE (widget), shadow_type, + state_type, shadow_type, area, widget, "radiobutton", x, y, indicator_size, indicator_size); } |