Merge branch 'mouse' of https://github.com/cgzones/htop into cgzones-mouse

This commit is contained in:
Nathan Scott 2021-09-20 16:29:05 +10:00
commit 09ad8067f4
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)) {