Mediaplayer: Infoview fix text color

Change-Id: I6263b5c0a474bd439a1f09233f621ae3eec1bf23
Reviewed-on: https://review.haiku-os.org/c/haiku/+/9879
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: waddlesplash <[email protected]>
This commit is contained in:
Pascal Abresch
2025-11-15 18:37:11 +00:00
committed by nephele nephele
parent 0c041e8c47
commit f2e67ee244
+4
View File
@@ -183,6 +183,7 @@ InfoWin::InfoWin(BPoint leftTop, Controller* controller)
BStringView* containerLabel = _CreateLabel("containerLabel",
B_TRANSLATE("Container"));
containerLabel->SetHighUIColor(B_PANEL_TEXT_COLOR);
fContainerInfo = _CreateInfo("container");
fVideoSeparator = _CreateSeparator();
@@ -195,15 +196,18 @@ InfoWin::InfoWin(BPoint leftTop, Controller* controller)
fAudioSeparator = _CreateSeparator();
fAudioLabel = _CreateLabel("audioLabel", B_TRANSLATE("Audio"));
fAudioLabel->SetHighUIColor(B_PANEL_TEXT_COLOR);
fAudioFormatInfo = _CreateInfo("audioFormat");
fAudioConfigInfo = _CreateInfo("audioConfig");
BStringView* durationLabel = _CreateLabel("durationLabel",
B_TRANSLATE("Duration"));
durationLabel->SetHighUIColor(B_PANEL_TEXT_COLOR);
fDurationInfo = _CreateInfo("duration");
BStringView* locationLabel = _CreateLabel("locationLabel",
B_TRANSLATE("Location"));
locationLabel->SetHighUIColor(B_PANEL_TEXT_COLOR);
fLocationInfo = _CreateInfo("location");
fCopyrightSeparator = _CreateSeparator();