Activate the auto-type select dialog after showing it.

That way it is brought to the front even when the main window is minimized.
This commit is contained in:
Felix Geyer 2012-08-01 16:13:18 +02:00
parent 54433637eb
commit 013a924e43

View File

@ -178,6 +178,8 @@ void AutoType::performGlobalAutoType(const QList<Database*>& dbList)
connect(selectDialog, SIGNAL(rejected()), SLOT(resetInAutoType()));
selectDialog->setEntries(entryList, sequenceHash);
selectDialog->show();
// necessary when the main window is minimized
selectDialog->activateWindow();
}
}