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

This commit is contained in:
Nishi 2026-05-22 09:19:19 +09:00
commit 262019b1d4
4 changed files with 24 additions and 5 deletions

View file

@ -170,11 +170,11 @@ static void resize(MwWidget handle) {
MwForceRender(handle);
}
static void children_update(MwWidget handle, MwWidget child, int new) {
static void children_update(MwWidget handle, MwWidget child, int new_child) {
MwTable t = handle->internal;
t->layout = 1;
if(new) {
if(new_child) {
arrput(t->widgets, child);
} else {
int i;