http://bugs.codeweavers.com/show_bug.cgi?id=580
*** shadow/580 Wed Apr 17 14:37:06 2002 --- shadow/580.tmp.14875 Wed Apr 17 14:37:06 2002 *************** *** 0 **** --- 1,31 ---- + +============================================================================+ + | Vertical ScrollBar disappearing on Open common dialogbox | + +----------------------------------------------------------------------------+ + | Bug #: 580 Product: Wine | + | Status: UNCONFIRMED Version: 20020310 | + | Resolution: Platform: | + | Severity: normal OS/Version: All | + | Priority: P1 Component: wine-misc | + +----------------------------------------------------------------------------+ + | Assigned To: wine-bugs@winehq.com | + | Reported By: myasar@free.fr | + | CC list: Cc: | + +----------------------------------------------------------------------------+ + | Milestone: TargetMilestone: --- | + | URL: | + +============================================================================+ + | DESCRIPTION | + Launch notepad for example and File|Open to open Openfile dialog, + select a folder containing many files and click two times on + "Detailled view". On second click the vertical scrollbar disappears. + + Cause : + I can correct this if I comment the following lines in LISTVIEW_StyleChanged() + + if ((lpss->styleOld & WS_HSCROLL) != 0) + ShowScrollBar(hwnd, SB_HORZ, FALSE); + + if ((lpss->styleOld & WS_VSCROLL) != 0) + ShowScrollBar(hwnd, SB_VERT, FALSE); + + Tested on Wine-20020411 (and previous releases) \ No newline at end of file