From e0100f6b98fc3b453d38024f579ead7cf84f581c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 23 Feb 2021 23:44:27 +0100 Subject: You wouldn't believe how long this took to find NASTY BUGS! --- apps/window.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apps/window.c') 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; } -- cgit v1.2.3