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
|
@ -582,8 +582,14 @@ static LRESULT COMBO_Create( HWND hwnd, LPHEADCOMBO lphc, HWND hwndParent, LONG
|
||||||
{
|
{
|
||||||
lbeStyle &= ~WS_BORDER;
|
lbeStyle &= ~WS_BORDER;
|
||||||
lbeExStyle |= WS_EX_CLIENTEDGE;
|
lbeExStyle |= WS_EX_CLIENTEDGE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
else
|
||||||
|
{
|
||||||
|
lbeExStyle |= (WS_EX_TOPMOST | WS_EX_TOOLWINDOW);
|
||||||
|
}
|
||||||
|
#endif /* __REACTOS__ */
|
||||||
|
|
||||||
if (unicode)
|
if (unicode)
|
||||||
lphc->hWndLBox = CreateWindowExW(lbeExStyle, clbName, NULL, lbeStyle,
|
lphc->hWndLBox = CreateWindowExW(lbeExStyle, clbName, NULL, lbeStyle,
|
||||||
|
|
Loading…
Reference in a new issue