wip subwindow
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-04-30 08:37:50 +09:00
commit a6adca6696
9 changed files with 105 additions and 9 deletions

View file

@ -173,12 +173,14 @@ static void lldarkthemehandler(MwLL handle, void* data) {
int s;
if(IsFirstVisible(h) && (shgeti(h->integer, MwNdarkTheme) == -1 || ((s = MwGetInteger(h, MwNdarkThemeAutomatic)) != MwDEFAULT && s))) {
MwVaApply(h,
MwNdarkTheme, *ptr,
MwNdarkThemeAutomatic, 1,
NULL);
if(MwGetInteger(h, MwNmodernLook)){
MwVaApply(h,
MwNdarkTheme, *ptr,
MwNdarkThemeAutomatic, 1,
NULL);
MwDispatchUserHandler(h, MwNdarkThemeHandler, data);
MwDispatchUserHandler(h, MwNdarkThemeHandler, data);
}
}
}