forked from AuroraMiddleware/gtk
scrollbar steppers are now ETCHED_IN
This commit is contained in:
parent
8e48a3bad4
commit
524f0ba1bd
@ -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>
|
2003-11-04 Dom Lachowicz <cinamod@hotmail.com>
|
||||||
|
|
||||||
* src/xp_theme.c: Move Raymond's scrollbar work into wimp_style.c
|
* src/xp_theme.c: Move Raymond's scrollbar work into wimp_style.c
|
||||||
|
@ -1284,6 +1284,11 @@ draw_box (GtkStyle *style,
|
|||||||
return;
|
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
|
else
|
||||||
{
|
{
|
||||||
const gchar * name = gtk_widget_get_name (widget);
|
const gchar * name = gtk_widget_get_name (widget);
|
||||||
|
Loading…
Reference in New Issue
Block a user