From f2e67ee2447530ad63b805fe1904e4145773b2cf Mon Sep 17 00:00:00 2001 From: Pascal Abresch Date: Sat, 15 Nov 2025 12:56:26 +0100 Subject: [PATCH] Mediaplayer: Infoview fix text color Change-Id: I6263b5c0a474bd439a1f09233f621ae3eec1bf23 Reviewed-on: https://review.haiku-os.org/c/haiku/+/9879 Tested-by: Commit checker robot Reviewed-by: waddlesplash --- src/apps/mediaplayer/InfoWin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/apps/mediaplayer/InfoWin.cpp b/src/apps/mediaplayer/InfoWin.cpp index 4e56afd07d..6579fb341c 100644 --- a/src/apps/mediaplayer/InfoWin.cpp +++ b/src/apps/mediaplayer/InfoWin.cpp @@ -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();