From da9d7d69898d5d60c4126294bb44095453b0838b Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Mon, 31 Mar 2025 01:18:50 +0800 Subject: [PATCH] fix: add a small delay when file watcher triggers a reload The file might still being write by other program, thus we add a 500ms delay to reload the image. --- app/mainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/mainwindow.cpp b/app/mainwindow.cpp index 37489dd..5dbf2b9 100644 --- a/app/mainwindow.cpp +++ b/app/mainwindow.cpp @@ -149,7 +149,9 @@ MainWindow::MainWindow(QWidget *parent) connect(m_pm->model(), &PlaylistModel::modelReset, this, std::bind(&MainWindow::galleryCurrent, this, false, false)); connect(m_pm, &PlaylistManager::currentIndexChanged, this, std::bind(&MainWindow::galleryCurrent, this, true, false)); - connect(m_fileSystemWatcher, &QFileSystemWatcher::fileChanged, this, std::bind(&MainWindow::galleryCurrent, this, false, true)); + connect(m_fileSystemWatcher, &QFileSystemWatcher::fileChanged, this, [this](){ + QTimer::singleShot(500, this, std::bind(&MainWindow::galleryCurrent, this, false, true)); + }); QShortcut * fullscreenShorucut = new QShortcut(QKeySequence(QKeySequence::FullScreen), this); connect(fullscreenShorucut, &QShortcut::activated,