diff options
author | Dom Lachowicz <doml@src.gnome.org> | 2004-12-01 16:13:06 +0000 |
---|---|---|
committer | Dom Lachowicz <doml@src.gnome.org> | 2004-12-01 16:13:06 +0000 |
commit | 29ada43da25e23cb35d9fb4c7c5eb72cf3090370 (patch) | |
tree | 661ba41cc4b7b7afa7bf8b6d6e5163a2f3e4aca2 /modules/engines/ms-windows | |
parent | 3bd8c449f4b0bd795269a1a600a8d89a9a90cbd7 (diff) | |
download | gtk+-29ada43da25e23cb35d9fb4c7c5eb72cf3090370.tar.gz |
draw XP status bar grip, toolbar grip properly
Diffstat (limited to 'modules/engines/ms-windows')
-rwxr-xr-x | modules/engines/ms-windows/msw_style.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/engines/ms-windows/msw_style.c b/modules/engines/ms-windows/msw_style.c index 76e7089c5d..93052c5963 100755 --- a/modules/engines/ms-windows/msw_style.c +++ b/modules/engines/ms-windows/msw_style.c @@ -1784,7 +1784,7 @@ draw_resize_grip (GtkStyle *style, gint height) { if (detail && !strcmp(detail, "statusbar")) { - if (!xp_theme_draw(window, XP_THEME_ELEMENT_STATUS_GRIPPER, style, x, y, width, height, + if (xp_theme_draw(window, XP_THEME_ELEMENT_STATUS_GRIPPER, style, x, y, width, height, state_type, area)) return; } @@ -1807,7 +1807,7 @@ draw_handle (GtkStyle *style, gint height, GtkOrientation orientation) { - if (GTK_IS_HANDLE_BOX (widget)) + if (is_toolbar_child (widget)) { XpThemeElement hndl; |