diff options
| author | iamcheeseman <[email protected]> | 2026-05-14 15:32:25 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-05-14 15:32:25 -0400 |
| commit | f2928487a77863714e75edc0cfd2cf2ac701ea9c (patch) | |
| tree | e178c6340b0102cb71f11a22ffc1ae400b95d8e8 | |
| parent | bf3ff59277a6950f45244d9ae11dc032c360c0ee (diff) | |
add padding to window contents
| -rw-r--r-- | teensy/teensy_ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/teensy_ui.c b/teensy/teensy_ui.c index c5bd6af..d9ce33b 100644 --- a/teensy/teensy_ui.c +++ b/teensy/teensy_ui.c @@ -219,7 +219,7 @@ bool tyui_begin_window_ex( Window *win = &uictx.windows[*id - 1]; uictx.active = win; - win->next_pos = ty_vec2i(0, 0); + win->next_pos = ty_vec2i(2, 1); if (win->flags & TYUI_WIN_INVISIBLE) goto done; |
