From 013a924e434b86276ad4389b6384407facdcc8e4 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Wed, 1 Aug 2012 16:13:18 +0200 Subject: [PATCH] Activate the auto-type select dialog after showing it. That way it is brought to the front even when the main window is minimized. --- src/autotype/AutoType.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/autotype/AutoType.cpp b/src/autotype/AutoType.cpp index 82a969610..5cf825c22 100644 --- a/src/autotype/AutoType.cpp +++ b/src/autotype/AutoType.cpp @@ -178,6 +178,8 @@ void AutoType::performGlobalAutoType(const QList& dbList) connect(selectDialog, SIGNAL(rejected()), SLOT(resetInAutoType())); selectDialog->setEntries(entryList, sequenceHash); selectDialog->show(); + // necessary when the main window is minimized + selectDialog->activateWindow(); } }