From badeaf9e8298b9b8bbb37252eacb0eb2fcf14b98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 2 Jan 2021 23:49:04 +0100 Subject: IncSet: do not resize on our own and do not search on resize The supervising ScreenManager will resize all Panels. Also do not start the search on resize. --- IncSet.c | 2 +- MainPanel.c | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/IncSet.c b/IncSet.c index 043d6e6e..5b2fe728 100644 --- a/IncSet.c +++ b/IncSet.c @@ -174,7 +174,7 @@ bool IncSet_handleKey(IncSet* this, int ch, Panel* panel, IncMode_GetPanelValue doSearch = false; } } else if (ch == KEY_RESIZE) { - Panel_resize(panel, COLS, LINES - panel->y - 1); + doSearch = (mode->index > 0); } else { if (mode->isFilter) { filterChanged = true; diff --git a/MainPanel.c b/MainPanel.c index 9fbd69d9..3e7a812d 100644 --- a/MainPanel.c +++ b/MainPanel.c @@ -51,8 +51,12 @@ static HandlerResult MainPanel_eventHandler(Panel* super, int ch) { Htop_Reaction reaction = HTOP_OK; + /* Let supervising ScreenManager handle resize */ + if (ch == KEY_RESIZE) + return IGNORED; + /* reset on every normal key */ - if (ch != ERR && ch != KEY_RESIZE) + if (ch != ERR) this->state->hideProcessSelection = false; if (EVENT_IS_HEADER_CLICK(ch)) { -- cgit v1.2.3