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

This commit is contained in:
Nishi 2026-05-13 14:41:35 +09:00
commit e448a8ed4e

View file

@ -585,9 +585,11 @@ void MwSetInteger(MwWidget handle, const char* key, int n) {
shdel(h->integer, MwNdarkThemeAutomatic);
while(h->parent != NULL && h->parent->widget_class != MwWindowClass) h = h->parent;
if(h->widget_class != MwWindowClass) {
while(h->parent != NULL && h->parent->widget_class != MwWindowClass) h = h->parent;
}
MwLLSetDarkTheme(h->lowlevel, n);
if(h->lowlevel != NULL) MwLLSetDarkTheme(h->lowlevel, n);
}
}