mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-04 13:07:38 +03:00
Fix macOS window activation issues
Reverts part of 34b7d08a5, which introduced a regression.
This commit is contained in:
parent
a73f5bc32e
commit
93fedd0fff
1 changed files with 6 additions and 0 deletions
|
@ -212,6 +212,12 @@ bool Application::event(QEvent* event)
|
||||||
emit openFile(static_cast<QFileOpenEvent*>(event)->file());
|
emit openFile(static_cast<QFileOpenEvent*>(event)->file());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
#ifdef Q_OS_MACOS
|
||||||
|
// restore main window when clicking on the docker icon
|
||||||
|
else if (event->type() == QEvent::ApplicationActivate) {
|
||||||
|
emit applicationActivated();
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return QApplication::event(event);
|
return QApplication::event(event);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue