scrollbar steppers are now ETCHED_IN

This commit is contained in:
cinamod 2003-11-05 15:10:27 +00:00
parent 8e48a3bad4
commit 524f0ba1bd
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-11-05 Dom Lachowicz <cinamod@hotmail.com>
* src/wimp_style.c: Toolbar steppers get drawn ETCHED_IN when pressed now. More
consistent with Win32 behavior.
2003-11-04 Dom Lachowicz <cinamod@hotmail.com>
* src/xp_theme.c: Move Raymond's scrollbar work into wimp_style.c

View File

@ -1284,6 +1284,11 @@ draw_box (GtkStyle *style,
return;
}
}
else if (detail && (strcmp (detail, "vscrollbar") == 0 || strcmp (detail, "hscrollbar") == 0))
{
if (shadow_type == GTK_SHADOW_IN)
shadow_type = GTK_SHADOW_ETCHED_IN;
}
else
{
const gchar * name = gtk_widget_get_name (widget);