diff --git a/dlls/comctl32/comboex.c b/dlls/comctl32/comboex.c index 174c110c700..7d8d5ecc98a 100644 --- a/dlls/comctl32/comboex.c +++ b/dlls/comctl32/comboex.c @@ -1570,7 +1570,7 @@ static LRESULT COMBOEX_NCCreate (HWND hwnd) DWORD oldstyle, newstyle; oldstyle = (DWORD)GetWindowLongW (hwnd, GWL_STYLE); - newstyle = oldstyle & ~(WS_VSCROLL | WS_HSCROLL); + newstyle = oldstyle & ~(WS_VSCROLL | WS_HSCROLL | WS_BORDER); if (newstyle != oldstyle) { TRACE("req style %08lx, reseting style %08lx\n", oldstyle, newstyle);