diff options
| author | Arslaan Pathan <[email protected]> | 2026-04-21 15:28:04 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-04-21 15:28:04 +1200 |
| commit | 12fb8e70c79fb262a06431bfbd0e4ce97380d2a8 (patch) | |
| tree | 684a4ef53637317486736c6a5bc7e9b823336b2f /src/saffron_window.c | |
| parent | 3cdc4ac982c0a708dcd50a2f83f984303342902b (diff) | |
| download | saffron-12fb8e70c79fb262a06431bfbd0e4ce97380d2a8.tar.xz saffron-12fb8e70c79fb262a06431bfbd0e4ce97380d2a8.zip | |
Add foundations for layout
Diffstat (limited to 'src/saffron_window.c')
| -rw-r--r-- | src/saffron_window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/saffron_window.c b/src/saffron_window.c index a25fa0e..c595c08 100644 --- a/src/saffron_window.c +++ b/src/saffron_window.c @@ -7,7 +7,7 @@ SaffronWindow* saffron_window_new(const char* title, int w, int h) { SaffronWindow* window = malloc(sizeof(SaffronWindow)); - window->root = saffron_widget_new(); // frick, need to implement this. + window->root = saffron_widget_new(); window->title = title; window->w = window->root->w = w; window->h = window->root->h = h; |
