From 9e7d4913ebabac3df7737f7bc780eda52f3ecd1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Helge=20He=C3=9F?= Date: Fri, 2 Oct 2020 17:58:19 +0200 Subject: [PATCH] Explicitly set detail popover text fg color The main window environment seems to be preserved on macOS Catalyst (preserving the "white" color of the main window). --- Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift b/Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift index 0fe3566..47db0bf 100644 --- a/Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift +++ b/Sources/5GUIs/Views/Windows/MainWindow/DetailsPopover.swift @@ -37,6 +37,7 @@ struct DetailsPopover: View { } } } + .foregroundColor(Color(NSColor.textColor)) } }