diff options
author | dgp <dgp@users.sourceforge.net> | 2016-01-20 19:23:46 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-01-20 19:23:46 (GMT) |
commit | 0176b08225a47e5f21586757e0efb9cfe8609fa7 (patch) | |
tree | 91673cb7b0c95cde596fc08edc9971ecc7a519de /win | |
parent | 6c0187f324138cc7e5f7aeaafa9718bd32e536c4 (diff) | |
parent | bbcec99c56690c05359f41e55c6dd7f3461c9aee (diff) | |
download | tk-0176b08225a47e5f21586757e0efb9cfe8609fa7.zip tk-0176b08225a47e5f21586757e0efb9cfe8609fa7.tar.gz tk-0176b08225a47e5f21586757e0efb9cfe8609fa7.tar.bz2 |
merge 8.5
Diffstat (limited to 'win')
-rw-r--r-- | win/tkWinScrlbr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tkWinScrlbr.c b/win/tkWinScrlbr.c index 46aad58..fc9685d 100644 --- a/win/tkWinScrlbr.c +++ b/win/tkWinScrlbr.c @@ -218,10 +218,10 @@ CreateProc( if (scrollPtr->info.vertical) { style = WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS - | SBS_VERT | SBS_RIGHTALIGN; + | SBS_VERT; } else { style = WS_CHILD | WS_VISIBLE | WS_CLIPCHILDREN | WS_CLIPSIBLINGS - | SBS_HORZ | SBS_BOTTOMALIGN; + | SBS_HORZ; } scrollPtr->hwnd = CreateWindow("SCROLLBAR", NULL, style, |