(self, text: str, parent=None)
| 61 | """副标题标签组件""" |
| 62 | |
| 63 | def __init__(self, text: str, parent=None): |
| 64 | super().__init__(text, parent) |
| 65 | self.setFont(get_default_font(16, bold=True)) |
| 66 | self.setProperty("class", "subtitle") |
| 67 | |
| 68 | |
| 69 | class SecondaryLabel(QLabel): |
nothing calls this directly
no test coverage detected