From 197ea3ca20879b29fca41a07cf43e5b04b9c5083 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 26 Oct 2020 16:36:40 +0100 Subject: Optimizations --- apps/window.c | 1 + apps/wm.c | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/window.c b/apps/window.c index f8e2723..6c360f8 100644 --- a/apps/window.c +++ b/apps/window.c @@ -20,6 +20,7 @@ int main() struct element *container = gui_init("test", 0, 0); struct element_button *button = gui_add_button(container, 10, 10, FONT_24, "Baum!", COLOR_WHITE, COLOR_BLACK); + gfx_border(container->ctx, COLOR_FG, 2); button->on_click = on_click; diff --git a/apps/wm.c b/apps/wm.c index 954ec4e..ed1a4dd 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -74,13 +74,15 @@ static void redraw_all() struct node *iterator = contexts->head; while (iterator != NULL) { struct context *ctx = iterator->data; - if (ctx != focused && !(ctx->flags & WF_RELATIVE)) + if (ctx != focused && !(ctx->flags & WF_RELATIVE)) { gfx_ctx_on_ctx(&exchange, ctx, ctx->x, ctx->y); + } iterator = iterator->next; } - if (focused) + if (focused) { gfx_ctx_on_ctx(&exchange, focused, focused->x, focused->y); + } memcpy(direct.fb, exchange.fb, exchange.pitch * exchange.height); } -- cgit v1.2.3