what did i even change?

This commit is contained in:
Nishi 2026-01-06 00:54:00 +09:00
commit 85df90ceaf
Signed by: nishi
GPG key ID: 27EF69B208EB9343
3 changed files with 5 additions and 1 deletions

View file

@ -121,6 +121,7 @@ MwWidget MwCreateWidget(MwClass widget_class, const char* name, MwWidget parent,
h->parent = parent;
h->children = NULL;
if(widget_class != NULL) {
if((h->lowlevel = MwLLCreate(parent == NULL ? NULL : parent->lowlevel, x, y, width, height)) == NULL) {
free(h->name);