Restore auto-completion & calltip default fg/bg colors (no theme)

Fix #11637
pull/12038/head
Don Ho 2022-05-08 15:00:04 +02:00
parent 82c03424bb
commit 6e83e6810a
1 changed files with 3 additions and 0 deletions

View File

@ -5840,6 +5840,9 @@ void Notepad_plus::drawTabbarColoursFromStylerArray()
void Notepad_plus::drawAutocompleteColoursFromTheme(COLORREF fgColor, COLORREF bgColor) void Notepad_plus::drawAutocompleteColoursFromTheme(COLORREF fgColor, COLORREF bgColor)
{ {
if (bgColor == 0xFFFFFF)
return;
int rbv = GetRValue(bgColor); int rbv = GetRValue(bgColor);
int gbv = GetGValue(bgColor); int gbv = GetGValue(bgColor);
int bbv = GetBValue(bgColor); int bbv = GetBValue(bgColor);