mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
Louis-Philippe Gagnon (of Macadamian for Corel)
Static controls weren't receiving WM_LBUTTONDBLCLK messages because the Static window class was registered without the CS_DBLCLKS style (which it has in Windows).
This commit is contained in:
parent
c23b1ee3da
commit
207f7019e6
@ -46,7 +46,7 @@ static WNDCLASSA WIDGETS_BuiltinClasses[BIC32_NB_CLASSES] =
|
||||
{ CS_GLOBALCLASS | CS_SAVEBITS, PopupMenuWndProc, 0, sizeof(HMENU),
|
||||
0, 0, (HCURSOR)IDC_ARROWA, NULL_BRUSH, 0, POPUPMENU_CLASS_NAME },
|
||||
/* BIC32_STATIC */
|
||||
{ CS_GLOBALCLASS | CS_PARENTDC, StaticWndProc,
|
||||
{ CS_GLOBALCLASS | CS_DBLCLKS | CS_PARENTDC, StaticWndProc,
|
||||
0, sizeof(STATICINFO), 0, 0, (HCURSOR)IDC_ARROWA, 0, 0, "Static" },
|
||||
/* BIC32_SCROLL */
|
||||
{ CS_GLOBALCLASS | CS_DBLCLKS | CS_VREDRAW | CS_HREDRAW | CS_PARENTDC,
|
||||
|
Loading…
Reference in New Issue
Block a user