summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorRaymond Penners <pennersr@src.gnome.org>2003-10-17 18:00:44 +0000
committerRaymond Penners <pennersr@src.gnome.org>2003-10-17 18:00:44 +0000
commita0628bab9aab1667709d1d6d43ad13ce5695511f (patch)
treefeaf5d499ae76d74666cf97ca1eebaf75e571a84 /modules
parent7c4b8aef832d5a2e879890659b7e93df22b4d297 (diff)
downloadgdk-pixbuf-a0628bab9aab1667709d1d6d43ad13ce5695511f.tar.gz
Scrollbar fixes
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/engines/ms-windows/ChangeLog.old5
-rwxr-xr-xmodules/engines/ms-windows/wimp_style.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/modules/engines/ms-windows/ChangeLog.old b/modules/engines/ms-windows/ChangeLog.old
index 0ca79a526..5fb487e56 100755
--- a/modules/engines/ms-windows/ChangeLog.old
+++ b/modules/engines/ms-windows/ChangeLog.old
@@ -1,3 +1,8 @@
+2003-10-17 Raymond Penners <raymond@dotsphinx.com>
+
+ * src/wimp_style.c: Horizontal/vertical scrollbars were mixed up,
+ fixed.
+
2003-04-15 Arnaud Charlet <charlet@ACT-Europe.FR>
* src/*.c: The handling of selected radio button was broken.
diff --git a/modules/engines/ms-windows/wimp_style.c b/modules/engines/ms-windows/wimp_style.c
index c82719ca5..57f39cbca 100755
--- a/modules/engines/ms-windows/wimp_style.c
+++ b/modules/engines/ms-windows/wimp_style.c
@@ -1146,7 +1146,7 @@ draw_box (GtkStyle *style,
{
GtkScrollbar * scrollbar = GTK_SCROLLBAR(widget);
if (xp_theme_draw(window,
- (! GTK_IS_VSCROLLBAR(widget))
+ (GTK_IS_VSCROLLBAR(widget))
? XP_THEME_ELEMENT_SCROLLBAR_V
: XP_THEME_ELEMENT_SCROLLBAR_H,
style, x, y, width, height, state_type, area))