Fix dialog/prop

This commit is contained in:
angelblue05 2018-09-08 02:15:15 -05:00
parent 48daed72b2
commit 0d5e718553
2 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,7 @@ def progress(message=None):
if item:
args = (item,) + args
kwargs['dialog'] = dialog
result = func(self, *args, **kwargs)
result = func(self, dialog=dialog, *args, **kwargs)
dialog.close()
return result

View File

@ -214,6 +214,7 @@ class Library(threading.Thread):
raise Exception("Failed to retrieve latest updates")
else:
FullSync(self)
Views().get_nodes()
self.started = True
return True