added stylesheet support

This commit is contained in:
Nix 2024-12-20 09:43:15 -03:00 committed by GitHub
parent 152b7d82dc
commit fd4c23ed3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,6 +94,14 @@ class PicomcVersionSelector(QWidget):
# Apply the palette to the application
app.setPalette(palette)
# Apply style sheet if present
if "stylesheet" in self.theme:
stylesheet = self.theme["stylesheet"]
app.setStyleSheet(stylesheet)
else:
print("No 'stylesheet' section found in the theme file.")
def themes_integrity(self):
# Define folder and file paths
themes_folder = "themes"