diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-01-24 01:36:39 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-01-24 01:36:39 +0000 |
commit | c431ffffc63bab8bfd9c0372ab33b082cb4caa8d (patch) | |
tree | 1ce63a5adc7ab38af12942c384b3012624bd4224 /gtk/gtknotebook.c | |
parent | 1b3a7630f29d57232dfda9011ddf5acda3b1c78e (diff) | |
download | gdk-pixbuf-c431ffffc63bab8bfd9c0372ab33b082cb4caa8d.tar.gz |
Use insensitive state for insensitive arrows, not just an "etched state".
Wed Jan 23 20:28:59 2002 Owen Taylor <otaylor@redhat.com>
* gtk/gtknotebook.c (gtk_notebook_draw_arrow):
Use insensitive state for insensitive arrows, not
just an "etched state". (#67172, Adrian Custer)
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r-- | gtk/gtknotebook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index d1f725d29..ff90de2b2 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -2713,7 +2713,7 @@ gtk_notebook_draw_arrow (GtkNotebook *notebook, STEP_PREV, TRUE)) { shadow_type = GTK_SHADOW_ETCHED_IN; - state_type = GTK_STATE_NORMAL; + state_type = GTK_STATE_INSENSITIVE; } if (notebook->tab_pos == GTK_POS_LEFT || @@ -2732,7 +2732,7 @@ gtk_notebook_draw_arrow (GtkNotebook *notebook, STEP_NEXT, TRUE)) { shadow_type = GTK_SHADOW_ETCHED_IN; - state_type = GTK_STATE_NORMAL; + state_type = GTK_STATE_INSENSITIVE; } if (notebook->tab_pos == GTK_POS_LEFT || |