Update picodulce.py

This commit is contained in:
Nix 2024-04-15 19:29:30 -03:00 committed by GitHub
parent c1225e4a6d
commit 705d09d271
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,15 +19,8 @@ class PicomcVersionSelector(QWidget):
self.setWindowIcon(QIcon('launcher_icon.ico')) # Set window icon
self.setGeometry(100, 100, 400, 250)
# Set application style to "Fusion" for consistent appearance
QApplication.setStyle("Fusion")
# Set Fusion dark style if running on Windows
if sys.platform.startswith('win'):
palette = QApplication.palette()
palette.setColor(QApplication.Window, Qt.white)
palette.setColor(QApplication.BackgroundRole, Qt.white)
QApplication.setPalette(palette)
# Set application style to Oxygen
QApplication.setStyle("oxygen")
# Create title label
title_label = QLabel('PicoDulce Launcher') # Change label text