From 1255b19c2e2a75b1cb52fd82584ff768ed9c2385 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Tue, 28 May 2013 20:58:44 -0400 Subject: bugfix: Auto-reload failed in some circumstances diff --git a/src/mainwin.cc b/src/mainwin.cc index 9652d6c..788f824 100644 --- a/src/mainwin.cc +++ b/src/mainwin.cc @@ -205,7 +205,7 @@ MainWindow::MainWindow(const QString &filename) connect(animate_timer, SIGNAL(timeout()), this, SLOT(updateTVal())); autoReloadTimer = new QTimer(this); - autoReloadTimer->setSingleShot(true); + autoReloadTimer->setSingleShot(false); autoReloadTimer->setInterval(200); connect(autoReloadTimer, SIGNAL(timeout()), this, SLOT(checkAutoReload())); -- cgit v0.10.1