From 1a135341059bc9928447ed7d4aaf2f985a89d7d0 Mon Sep 17 00:00:00 2001 From: Sophist Date: Sat, 10 May 2014 16:41:47 +0100 Subject: [PATCH] Only refresh objects which can be refreshed --- picard/tagger.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/picard/tagger.py b/picard/tagger.py index b40f121fe..a02ca7053 100644 --- a/picard/tagger.py +++ b/picard/tagger.py @@ -613,7 +613,8 @@ class Tagger(QtGui.QApplication): def refresh(self, objs): for obj in objs: - obj.load(priority=True, refresh=True) + if obj.can_refresh(): + obj.load(priority=True, refresh=True) @classmethod def instance(cls):