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)
This commit is contained in:
Owen Taylor 2002-01-24 01:36:39 +00:00 committed by Owen Taylor
parent 1b3a7630f2
commit c431ffffc6
8 changed files with 44 additions and 2 deletions

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -1,3 +1,9 @@
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)
2002-01-23 Manish Singh <yosh@gimp.org>
* gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually

View File

@ -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 ||