mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
combobox popups should be always-on-top
svn path=/trunk/; revision=9395
This commit is contained in:
parent
bc072fb755
commit
39fee6b8c7
1 changed files with 7 additions and 1 deletions
|
@ -584,6 +584,12 @@ static LRESULT COMBO_Create( HWND hwnd, LPHEADCOMBO lphc, HWND hwndParent, LONG
|
|||
lbeExStyle |= WS_EX_CLIENTEDGE;
|
||||
}
|
||||
}
|
||||
#ifdef __REACTOS__
|
||||
else
|
||||
{
|
||||
lbeExStyle |= (WS_EX_TOPMOST | WS_EX_TOOLWINDOW);
|
||||
}
|
||||
#endif /* __REACTOS__ */
|
||||
|
||||
if (unicode)
|
||||
lphc->hWndLBox = CreateWindowExW(lbeExStyle, clbName, NULL, lbeStyle,
|
||||
|
|
Loading…
Reference in a new issue