diff options
author | cinamod <cinamod> | 2004-08-13 17:07:17 +0000 |
---|---|---|
committer | cinamod <cinamod> | 2004-08-13 17:07:17 +0000 |
commit | 45c766084d054c59e8b740ea2686f5984bf0f040 (patch) | |
tree | a5debb5ad3aa3238f168f59a6ede4b195ba953e1 /modules | |
parent | 95239fca67d782d810d57c571c18e991797e97a8 (diff) | |
download | gtk+-45c766084d054c59e8b740ea2686f5984bf0f040.tar.gz |
don't draw handle box grippies for GtkPaned
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/engines/ms-windows/msw_style.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/engines/ms-windows/msw_style.c b/modules/engines/ms-windows/msw_style.c index 6a37312a47..3e454f1d51 100755 --- a/modules/engines/ms-windows/msw_style.c +++ b/modules/engines/ms-windows/msw_style.c @@ -1814,11 +1814,12 @@ draw_handle (GtkStyle *style, { return; } + /* grippers are just flat boxes when they're not a toolbar */ parent_class->draw_box (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height); } - else + else if (!GTK_IS_PANED (widget)) { /* TODO: Draw handle boxes as double lines: || */ parent_class->draw_handle (style, window, state_type, shadow_type, |