From edd6130be73d1cb847f65b06409ac6e0b9cd9d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Tue, 15 Dec 2020 16:59:07 +0100 Subject: [PATCH] MainPanel: use actual KEY_RESIZE instead of KEY_SHUFFLE KEY_RESIZE (0632) is equal to KEY_SHUFFLE (0x19a) --- MainPanel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainPanel.c b/MainPanel.c index 97ec688b..6c0c9fd1 100644 --- a/MainPanel.c +++ b/MainPanel.c @@ -51,7 +51,7 @@ static HandlerResult MainPanel_eventHandler(Panel* super, int ch) { Htop_Reaction reaction = HTOP_OK; - if (ch != ERR && ch != /* KEY_SHUFFLE */ 0x19a) + if (ch != ERR && ch != KEY_RESIZE) this->state->hideProcessSelection = false; if (EVENT_IS_HEADER_CLICK(ch)) {