Improve sync dialog for Estuary by switching item's title and sync count

This commit is contained in:
croneter 2019-02-05 15:48:02 +01:00
parent 548d83874b
commit 4786372490

View file

@ -83,8 +83,8 @@ class FullSync(common.fullsync_mixin):
progress = 0 progress = 0
self.dialog.update(progress, self.dialog.update(progress,
'%s (%s)' % (self.section_name, self.section_type_text), '%s (%s)' % (self.section_name, self.section_type_text),
'%s/%s %s' '%s %s/%s'
% (self.current, self.total, self.title)) % (self.title, self.current, self.total))
if app.APP.player.isPlayingVideo(): if app.APP.player.isPlayingVideo():
self.dialog.close() self.dialog.close()
self.dialog = None self.dialog = None