Skip to content

Commit 239a1b4

Browse files
committed
fix: color position label white
Fix position label color to white so it stays visible regardless of theme.
1 parent 0784b85 commit 239a1b4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tagstudio/src/qt/widgets/media_player.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ def __init__(self, driver: "QtDriver") -> None:
240240
master_layout.addWidget(self.sub_controls, 1, 0)
241241

242242
self.position_label = QLabel("0:00")
243+
self.position_label.setStyleSheet("color: #ffffff;")
243244
master_layout.addWidget(self.position_label, 1, 1)
244245
master_layout.setAlignment(self.position_label, Qt.AlignmentFlag.AlignRight)
245246
self.position_label.hide()

0 commit comments

Comments
 (0)