From 8bdde97c0f650f0fefbbf104319b192e618f3153 Mon Sep 17 00:00:00 2001 From: luboslenco Date: Tue, 19 May 2026 20:18:29 +0200 Subject: [PATCH] ui: use HIGHLIGHT_COL to highlight node --- base/sources/iron_ui_nodes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/sources/iron_ui_nodes.c b/base/sources/iron_ui_nodes.c index ed12afa2..0389cb96 100644 --- a/base/sources/iron_ui_nodes.c +++ b/base/sources/iron_ui_nodes.c @@ -758,7 +758,7 @@ void ui_node_draw(ui_node_t *node, ui_node_canvas_t *canvas) { ui_draw_shadow(nx, ny, w, h); // Outline - draw_set_color(ui_is_selected(node) ? current->ops->theme->LABEL_COL : current->ops->theme->PRESSED_COL); + draw_set_color(ui_is_selected(node) ? current->ops->theme->HIGHLIGHT_COL : current->ops->theme->PRESSED_COL); ui_draw_rect(true, nx - 1, ny - 1, w + 2, h + 2); // Body