diff options
author | Marvin Borner | 2020-10-26 16:36:40 +0100 |
---|---|---|
committer | Marvin Borner | 2020-10-26 16:36:40 +0100 |
commit | 197ea3ca20879b29fca41a07cf43e5b04b9c5083 (patch) | |
tree | c0e0223e289bde3af7cca995f98d681779bfda26 /apps | |
parent | 4ae48304b2290b6c835eb3d937bd5e905ce0e5d4 (diff) |
Optimizations
Diffstat (limited to 'apps')
-rw-r--r-- | apps/window.c | 1 | ||||
-rw-r--r-- | apps/wm.c | 6 |
2 files changed, 5 insertions, 2 deletions
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; @@ -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); } |