mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 05:57:37 +03:00
Windows: Prevent white flicker when showing main window (#9637)
* Fixes #9603
This commit is contained in:
parent
2fe647fd7a
commit
a81771207f
3 changed files with 32 additions and 7 deletions
|
@ -707,13 +707,6 @@ MainWindow::~MainWindow()
|
|||
*/
|
||||
void MainWindow::restoreConfigState()
|
||||
{
|
||||
// start minimized if configured
|
||||
if (config()->get(Config::GUI_MinimizeOnStartup).toBool()) {
|
||||
hideWindow();
|
||||
} else {
|
||||
bringToFront();
|
||||
}
|
||||
|
||||
if (config()->get(Config::OpenPreviousDatabasesOnStartup).toBool()) {
|
||||
const QStringList fileNames = config()->get(Config::LastOpenedDatabases).toStringList();
|
||||
for (const QString& filename : fileNames) {
|
||||
|
@ -1370,6 +1363,24 @@ void MainWindow::databaseTabChanged(int tabIndex)
|
|||
updateEntryCountLabel();
|
||||
}
|
||||
|
||||
void MainWindow::showEvent(QShowEvent* event)
|
||||
{
|
||||
Q_UNUSED(event)
|
||||
#ifdef Q_OS_WIN
|
||||
// Qt Hack - Prevent white flicker when showing window
|
||||
QTimer::singleShot(50, this, [=] { setProperty("windowOpacity", 1.0); });
|
||||
#endif
|
||||
}
|
||||
|
||||
void MainWindow::hideEvent(QHideEvent* event)
|
||||
{
|
||||
Q_UNUSED(event)
|
||||
#ifdef Q_OS_WIN
|
||||
// Qt Hack - Prevent white flicker when showing window
|
||||
setProperty("windowOpacity", 0.0);
|
||||
#endif
|
||||
}
|
||||
|
||||
void MainWindow::closeEvent(QCloseEvent* event)
|
||||
{
|
||||
if (m_appExiting) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue