10 lines
317 B
Python
10 lines
317 B
Python
from PySide6.QtWidgets import QLabel
|
|
from PySide6.QtGui import QFont
|
|
from PySide6.QtCore import Qt
|
|
|
|
class SubLabelValue(QLabel):
|
|
""" Formatting for values. """
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.setAlignment(Qt.AlignmentFlag.AlignRight)
|
|
self.setFont(QFont("Cascadia Code", 8)) |