ScrollingArea text wrapping
- Dominant language
- C
- Stars
- 10.9k
- Forks
- 612
- PR merge metrics
- No merged PRs in 30d
Description
On macOS, the text isn't getting wrapped at all (only newlines are handled):

GTK:

Windows:

Code:
```diff
diff --git a/examples/drawtext/main.c b/examples/drawtext/main.c
index d94d2572..544d44e9 100644
--- a/examples/drawtext/main.c
+++ b/examples/drawtext/main.c
@@ -208,7 +208,7 @@ int main(void)
uiComboboxOnSelected(alignment, onComboboxSelected, NULL);
uiFormAppend(form, "Alignment", uiControl(alignment), 0);
- area = uiNewArea(&handler);
+ area = uiNewScrollingArea(&handler, 500, 1000);
uiBoxAppend(hbox, uiControl(area), 1);
uiControlShow(uiControl(mainwin));
```
Contributor guide
Assessment
This issue has not been assessed yet.