Sun, 14 Jun 2026 11:17:45 +0200
fix handling of missing members in uic_text_copy and uic_text_unbind
| ui/common/types.c | file | annotate | diff | comparison | revisions |
--- a/ui/common/types.c Sun Jun 14 11:07:38 2026 +0200 +++ b/ui/common/types.c Sun Jun 14 11:17:45 2026 +0200 @@ -705,6 +705,7 @@ to->selection = from->selection; to->length = from->length; to->remove = from->remove; + to->setreadonly = from->setreadonly; to->restore = from->restore; to->save = from->save; to->destroy = from->destroy; @@ -804,10 +805,12 @@ t->replace = NULL; t->setposition = NULL; t->position = NULL; + t->showposition = NULL; t->selection = NULL; t->setselection = NULL; t->length = NULL; t->remove = NULL; + t->setreadonly = NULL; } void uic_range_unbind(UiRange *r) {