LiquidGUI [1.1.0.1]

- Added support for minimum and maximum temperatures.
- Corrected typo in Calibri font name.
- UI tweaks.
This commit is contained in:
2024-07-13 21:30:28 +01:00
parent 5fab490885
commit 11b812cd37
5 changed files with 50 additions and 16 deletions
+4 -2
View File
@@ -1,9 +1,11 @@
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)
self.setFont(QFont("Calibri", 12, weight=QFont.Weight.Bold))
self.setText(value)