From fcd417c790cefd936add5ce59f0af7df779b7bd8 Mon Sep 17 00:00:00 2001 From: Sophist Date: Thu, 27 Feb 2014 17:00:45 +0000 Subject: [PATCH] Increase statusbar update frequency... ... to match 100ms used elsewhere. --- picard/ui/mainwindow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/picard/ui/mainwindow.py b/picard/ui/mainwindow.py index 381a84c53..129ce95b2 100644 --- a/picard/ui/mainwindow.py +++ b/picard/ui/mainwindow.py @@ -225,7 +225,7 @@ class MainWindow(QtGui.QMainWindow): self.tagger.listen_port_changed.connect(self.update_statusbar_listen_port) self.update_statusbar_stats() - @throttle(250) + @throttle(100) def update_statusbar_stats(self): """Updates the status bar information.""" self.infostatus.setFiles(len(self.tagger.files))