1
0
Fork 0
mirror of synced 2024-06-26 10:11:19 +12:00

DownloadsTab: Replace n/a with ellipsis

This commit is contained in:
loathingKernel 2023-02-20 14:58:22 +02:00
parent 00a0b36e75
commit 7a04f7b5be

View file

@ -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)