# HG changeset patch # User Olaf Wintermann <olaf.wintermann@gmail.com> # Date 1743346353 -7200 # Node ID 96f466ceaf2397b79f19a35280210f6caeaf4560 # Parent 5004b4a9b16d44cd9fa95f0ffd1b3a5f4bc8f79b fix textview creation (Cocoa) diff -r 5004b4a9b16d -r 96f466ceaf23 make/xcode/toolkit/toolkit/main.m --- a/make/xcode/toolkit/toolkit/main.m Sun Mar 30 16:38:27 2025 +0200 +++ b/make/xcode/toolkit/toolkit/main.m Sun Mar 30 16:52:33 2025 +0200 @@ -38,7 +38,7 @@ UiObject *obj = ui_window("My Window", NULL); - ui_grid(obj, .columnspacing = 0, .rowspacing = 0) { + ui_grid(obj, .columnspacing = 10, .rowspacing = 10) { ui_textarea(obj, .fill = UI_ON); } diff -r 5004b4a9b16d -r 96f466ceaf23 ui/cocoa/text.m --- a/ui/cocoa/text.m Sun Mar 30 16:38:27 2025 +0200 +++ b/ui/cocoa/text.m Sun Mar 30 16:52:33 2025 +0200 @@ -32,8 +32,12 @@ #import <objc/runtime.h> UIWIDGET ui_textarea_create(UiObject *obj, UiTextAreaArgs args) { + NSTextView *textview = [[NSTextView alloc] init]; + textview.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable; + NSScrollView *scrollview = [[NSScrollView alloc] init]; - NSTextView *textview = [[NSTextView alloc] init]; + scrollview.translatesAutoresizingMaskIntoConstraints = NO; + scrollview.hasVerticalScroller = YES; scrollview.documentView = textview; UiLayout layout = UI_INIT_LAYOUT(args);