diff -r 7b5ba65b246f -r 1391ba7e533f ui/cocoa/button.m --- a/ui/cocoa/button.m Tue Oct 07 14:59:11 2025 +0200 +++ b/ui/cocoa/button.m Tue Oct 07 15:42:18 2025 +0200 @@ -33,6 +33,7 @@ UIWIDGET ui_button_create(UiObject* obj, UiButtonArgs *args) { NSButton *button = [[NSButton alloc] init]; + button.translatesAutoresizingMaskIntoConstraints = NO; if(args->label) { NSString *label = [[NSString alloc] initWithUTF8String:args->label]; button.title = label;