Only refresh objects which can be refreshed

This commit is contained in:
Sophist
2014-05-10 16:41:47 +01:00
parent b42dc5f10c
commit 1a13534105

View File

@@ -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):