From 89269c6daad0adfe44a5ae029d4ef3473cfd3114 Mon Sep 17 00:00:00 2001 From: Dummerle Date: Tue, 6 Apr 2021 21:28:22 +0200 Subject: [PATCH] Uninstalled icons fix, Download tab fix --- Rare/Components/Tabs/Downloads/DownloadTab.py | 1 + Rare/Components/Tabs/Games/GameWidgets/UninstalledIconWidget.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Rare/Components/Tabs/Downloads/DownloadTab.py b/Rare/Components/Tabs/Downloads/DownloadTab.py index 6280b08c..3a546081 100644 --- a/Rare/Components/Tabs/Downloads/DownloadTab.py +++ b/Rare/Components/Tabs/Downloads/DownloadTab.py @@ -304,6 +304,7 @@ class DownloadTab(QWidget): self.dl_speed.setText("") self.cache_used.setText("") self.downloaded.setText("") + self.time_left.setText("") elif text == "error": QMessageBox.warning(self, "warn", "Download error") diff --git a/Rare/Components/Tabs/Games/GameWidgets/UninstalledIconWidget.py b/Rare/Components/Tabs/Games/GameWidgets/UninstalledIconWidget.py index a5eec79b..6eaf478a 100644 --- a/Rare/Components/Tabs/Games/GameWidgets/UninstalledIconWidget.py +++ b/Rare/Components/Tabs/Games/GameWidgets/UninstalledIconWidget.py @@ -18,7 +18,7 @@ class IconWidgetUninstalled(BaseUninstalledWidget): def __init__(self, game: Game, core: LegendaryCore, pixmap): super(IconWidgetUninstalled, self).__init__(game, core, pixmap) self.layout = QVBoxLayout() - + self.setObjectName("game_widget_icon") if self.pixmap: w = 200 self.pixmap = self.pixmap.scaled(w, int(w * 4 / 3))