mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-11-20 23:12:34 -05:00
Correct window transitions from browser plugin
* Eliminated multiple state variables * Fix #1643, window is brought to front
This commit is contained in:
parent
ca39f6e159
commit
d3a424cc74
3 changed files with 28 additions and 10 deletions
|
|
@ -1162,7 +1162,7 @@ void MainWindow::hideYubiKeyPopup()
|
|||
void MainWindow::bringToFront()
|
||||
{
|
||||
ensurePolished();
|
||||
setWindowState(windowState() & ~Qt::WindowMinimized);
|
||||
setWindowState((windowState() & ~Qt::WindowMinimized) | Qt::WindowActive);
|
||||
show();
|
||||
raise();
|
||||
activateWindow();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue