From b206cdba9206d3bdd574130d235990b2bd1ddad0 Mon Sep 17 00:00:00 2001 From: Jonathan White Date: Mon, 20 Jul 2020 21:27:23 -0400 Subject: [PATCH] Fix entry level Auto-Type window hiding * Fixes #4962 --- src/autotype/AutoType.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index 913a3c2a..310493cf 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -233,7 +233,7 @@ void AutoType::executeAutoTypeActions(const Entry* entry, QWidget* hideWindow, c macUtils()->raiseLastActiveWindow(); m_plugin->hideOwnWindow(); #else - hideWindow->showMinimized(); + getMainWindow()->minimizeOrHide(); #endif }