aboutsummaryrefslogtreecommitdiff
path: root/apps/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/window.c')
-rw-r--r--apps/window.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/window.c b/apps/window.c
index 5608ae3..f993ea4 100644
--- a/apps/window.c
+++ b/apps/window.c
@@ -8,7 +8,8 @@ int main()
{
struct gui_window win = { 0 };
assert(gui_new_window(&win) > 0);
- /* assert(gui_redraw_window(win.id) > 0); */
+ gfx_fill(win.ctx, COLOR_GREEN);
+ assert(gui_redraw_window(win.id) > 0);
log("%d\n", win.ctx->size.x);
return 0;
}