MainPanel: use actual KEY_RESIZE instead of KEY_SHUFFLE

KEY_RESIZE (0632) is equal to KEY_SHUFFLE (0x19a)
This commit is contained in:
Christian Göttsche 2020-12-15 16:59:07 +01:00
parent 107e3c8aa5
commit edd6130be7
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {