MainPanel: do not reset on disabled mouse events

Do not reset the hidden process selection (and hidden function bar) on mouse events, when mouse support is disabled.
This commit is contained in:
Christian Göttsche 2021-09-18 11:48:32 +02:00
parent c096712b8d
commit bf7d98e7ac
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ static HandlerResult MainPanel_eventHandler(Panel* super, int ch) {
if (ch == KEY_RESIZE)
return IGNORED;
/* reset on every normal key */
if (ch != ERR)
/* reset on every normal key, except mouse events while mouse support is disabled */
if (ch != ERR && (ch != KEY_MOUSE || this->state->settings->enableMouse))
this->state->hideProcessSelection = false;
if (EVENT_IS_HEADER_CLICK(ch)) {