From 12055fe0e1ab09fbc862f9dd3b418609dcd1dfec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Moreira?= Date: Fri, 22 May 2020 17:04:10 -0300 Subject: [PATCH] [ui] screenshots progress bar color --- bauh/view/qt/screenshots.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bauh/view/qt/screenshots.py b/bauh/view/qt/screenshots.py index 48f3c860..8e458929 100644 --- a/bauh/view/qt/screenshots.py +++ b/bauh/view/qt/screenshots.py @@ -8,7 +8,7 @@ from PyQt5.QtWidgets import QDialog, QLabel, QPushButton, QToolBar, QVBoxLayout, from bauh.api.abstract.cache import MemoryCache from bauh.api.http import HttpClient -from bauh.view.qt import qt_utils +from bauh.view.qt import qt_utils, styles from bauh.view.qt.components import new_spacer from bauh.view.qt.thread import AnimateProgress from bauh.view.qt.view_model import PackageView @@ -31,6 +31,7 @@ class ScreenshotsDialog(QDialog): self.i18n = i18n self.http_client = http_client self.progress_bar = QProgressBar() + self.progress_bar.setStyleSheet(styles.PROGRESS_BAR) self.progress_bar.setMaximumHeight(10 if QApplication.instance().style().objectName().lower() == 'windows' else 6) self.progress_bar.setTextVisible(False) self.thread_progress = AnimateProgress()