LiquidGUI [1.0.3.2] Release

- Refactored some code.
- Corrected fonts and updated styles.
This commit is contained in:
2024-06-30 14:57:29 +01:00
parent 069b6f650c
commit eda2fbeb71
4 changed files with 60 additions and 35 deletions
+9
View File
@@ -0,0 +1,9 @@
from PySide6.QtWidgets import QLabel
from PySide6.QtGui import QFont
class SubLabel(QLabel):
""" Formatting for sub-labels. """
def __init__(self, value):
super().__init__()
self.setFont(QFont("Calibre", 10, weight=QFont.Weight.Bold))
self.setText(value)