Make multiline and vertical tabs work in dark mode

Dark mode tab drawing should work for multiline and vertical tabs

Close #10017
This commit is contained in:
Adam D. Walling 2021-06-15 13:15:18 -04:00 committed by Don Ho
parent fc94015bff
commit acf91fc2c2
1 changed files with 1 additions and 1 deletions

View File

@ -882,7 +882,7 @@ LRESULT TabBarPlus::runProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lPara
} }
LONG_PTR dwStyle = GetWindowLongPtr(hwnd, GWL_STYLE); LONG_PTR dwStyle = GetWindowLongPtr(hwnd, GWL_STYLE);
if (!(dwStyle & TCS_OWNERDRAWFIXED) || (dwStyle & TCS_BOTTOM) || (dwStyle & TCS_BUTTONS)) if (!(dwStyle & TCS_OWNERDRAWFIXED))
{ {
break; break;
} }