diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py old mode 100644 new mode 100755 index fefd737a2..eff967fcd --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -1135,6 +1135,9 @@ your deck.""")) moreButton = QComboBox() if sys.platform.startswith("darwin"): moreButton.setFixedWidth(80) + if sys.platform.startswith("win32") and \ + self.config['alternativeTheme']: + moreButton.setFixedHeight(24) moreButton.addItems(QStringList([ _("More"), _("Forget"), diff --git a/ankiqt/ui/sync.py b/ankiqt/ui/sync.py old mode 100644 new mode 100755 index 41c15e040..4bde835f7 --- a/ankiqt/ui/sync.py +++ b/ankiqt/ui/sync.py @@ -126,6 +126,8 @@ class Sync(QThread): else: self.setStatus(_("Downloading..."), 0) client.fullSyncFromServer(ret[1], ret[2]) + if client.mediaSupported(): + self.doBulkDownload(proxy.deckName) self.setStatus(_("Sync complete."), 0) else: # diff