From 7a04f7b5be08ee0845e79f1761c3d0f0fb78c47e Mon Sep 17 00:00:00 2001 From: loathingKernel <142770+loathingKernel@users.noreply.github.com> Date: Mon, 20 Feb 2023 14:58:22 +0200 Subject: [PATCH] DownloadsTab: Replace `n/a` with ellipsis --- rare/components/tabs/downloads/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rare/components/tabs/downloads/__init__.py b/rare/components/tabs/downloads/__init__.py index d2aa93f3..ccb64475 100644 --- a/rare/components/tabs/downloads/__init__.py +++ b/rare/components/tabs/downloads/__init__.py @@ -271,10 +271,10 @@ class DownloadsTab(QWidget): self.download_widget.ui.kill_button.setDisabled(True) self.download_widget.ui.dl_name.setText(self.tr("No active download")) self.download_widget.ui.progress_bar.setValue(0) - self.download_widget.ui.dl_speed.setText("n/a") - self.download_widget.ui.time_left.setText("n/a") - self.download_widget.ui.cache_used.setText("n/a") - self.download_widget.ui.downloaded.setText("n/a") + self.download_widget.ui.dl_speed.setText("...") + self.download_widget.ui.time_left.setText("...") + self.download_widget.ui.cache_used.setText("...") + self.download_widget.ui.downloaded.setText("...") self.__thread = None @pyqtSlot(InstallOptionsModel)