From 36b9d3e9b493032aa9ba3971388556eec3a79c6f Mon Sep 17 00:00:00 2001 From: Pakobbix Date: Mon, 15 May 2023 17:00:15 +0200 Subject: [PATCH] fixed Update Button Font-Color --- StartUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/StartUI.py b/StartUI.py index 7e2cb5c..64c8e12 100644 --- a/StartUI.py +++ b/StartUI.py @@ -455,7 +455,7 @@ class MainWindow(QMainWindow): # Show if Update is available self.update_button_ui = QPushButton("Update\nAvailable") self.update_button_ui.setToolTip("Shows if an update is available") - self.update_button_ui.setStyleSheet("QLabel { color : red; font-weight: bold; qproperty-alignment: AlignCenter; }") + self.update_button_ui.setStyleSheet("QPushButton { color: #ff9999; font-weight: bold; }") self.update_button_ui.clicked.connect(self.on_update_button_ui_clicked) layout.addWidget(self.update_button_ui, 34 + len(gpu_stats), 2, 2, 2) self.update_button_ui.setVisible(False)