From 19b514168553c75a3d5a012b781efbfd00fccc08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Mon, 23 Nov 2020 16:23:18 +0100 Subject: Hide process selection on ESC Do not highlight the current process line after pressing ESC in the main screen. Restore after pressing any key. --- Panel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Panel.c') diff --git a/Panel.c b/Panel.c index fd9de2b1..68a245e3 100644 --- a/Panel.c +++ b/Panel.c @@ -217,7 +217,7 @@ void Panel_splice(Panel* this, Vector* from) { this->needsRedraw = true; } -void Panel_draw(Panel* this, bool focus) { +void Panel_draw(Panel* this, bool focus, bool highlightSelected) { assert (this != NULL); int size = Vector_size(this->items); @@ -273,7 +273,7 @@ void Panel_draw(Panel* this, bool focus) { Object_display(itemObj, &item); int itemLen = RichString_sizeVal(item); int amt = MINIMUM(itemLen - scrollH, this->w); - if (i == this->selected) { + if (highlightSelected && i == this->selected) { item.highlightAttr = selectionColor; } if (item.highlightAttr) { -- cgit v1.2.3