Fix dark mode applied correctely only for 1 project panel issue
parent
75643560a3
commit
4ae1063774
|
@ -815,16 +815,14 @@ void ProjectPanel::notified(LPNMHDR notification)
|
||||||
}
|
}
|
||||||
else if (notification->code == NM_CUSTOMDRAW && (notification->hwndFrom == _hToolbarMenu))
|
else if (notification->code == NM_CUSTOMDRAW && (notification->hwndFrom == _hToolbarMenu))
|
||||||
{
|
{
|
||||||
static bool becomeDarkMode = false;
|
|
||||||
static bool becomeLightMode = false;
|
|
||||||
if (NppDarkMode::isEnabled())
|
if (NppDarkMode::isEnabled())
|
||||||
{
|
{
|
||||||
if (!becomeDarkMode)
|
if (!_becomeDarkMode)
|
||||||
{
|
{
|
||||||
NppDarkMode::setExplorerTheme(_hToolbarMenu, false);
|
NppDarkMode::setExplorerTheme(_hToolbarMenu, false);
|
||||||
becomeDarkMode = true;
|
_becomeDarkMode = true;
|
||||||
}
|
}
|
||||||
becomeLightMode = false;
|
_becomeLightMode = false;
|
||||||
auto nmtbcd = reinterpret_cast<LPNMTBCUSTOMDRAW>(notification);
|
auto nmtbcd = reinterpret_cast<LPNMTBCUSTOMDRAW>(notification);
|
||||||
FillRect(nmtbcd->nmcd.hdc, &nmtbcd->nmcd.rc, NppDarkMode::getBackgroundBrush());
|
FillRect(nmtbcd->nmcd.hdc, &nmtbcd->nmcd.rc, NppDarkMode::getBackgroundBrush());
|
||||||
nmtbcd->clrText = NppDarkMode::getTextColor();
|
nmtbcd->clrText = NppDarkMode::getTextColor();
|
||||||
|
@ -833,12 +831,12 @@ void ProjectPanel::notified(LPNMHDR notification)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!becomeLightMode)
|
if (!_becomeLightMode)
|
||||||
{
|
{
|
||||||
NppDarkMode::setExplorerTheme(_hToolbarMenu, true);
|
NppDarkMode::setExplorerTheme(_hToolbarMenu, true);
|
||||||
becomeLightMode = true;
|
_becomeLightMode = true;
|
||||||
}
|
}
|
||||||
becomeDarkMode = false;
|
_becomeDarkMode = false;
|
||||||
SetWindowLongPtr(_hSelf, DWLP_MSGRESULT, CDRF_DODEFAULT);
|
SetWindowLongPtr(_hSelf, DWLP_MSGRESULT, CDRF_DODEFAULT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -117,6 +117,8 @@ protected:
|
||||||
generic_string _selDirOfFilesFromDirDlg;
|
generic_string _selDirOfFilesFromDirDlg;
|
||||||
bool _isDirty = false;
|
bool _isDirty = false;
|
||||||
int _panelID = 0;
|
int _panelID = 0;
|
||||||
|
bool _becomeDarkMode = false;
|
||||||
|
bool _becomeLightMode = false;
|
||||||
|
|
||||||
void initMenus();
|
void initMenus();
|
||||||
void destroyMenus();
|
void destroyMenus();
|
||||||
|
|
Loading…
Reference in New Issue