From 961b616c74690e1386c1df9ee87db54ad220f3bd Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Tue, 29 Mar 2022 19:22:30 +0200 Subject: [PATCH] Minor fixes --- Shared/Navigation/AppSidebarNavigation.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Shared/Navigation/AppSidebarNavigation.swift b/Shared/Navigation/AppSidebarNavigation.swift index 873eda48..ec3e58fe 100644 --- a/Shared/Navigation/AppSidebarNavigation.swift +++ b/Shared/Navigation/AppSidebarNavigation.swift @@ -14,6 +14,7 @@ struct AppSidebarNavigation: View { @EnvironmentObject private var instances @EnvironmentObject private var navigation @EnvironmentObject private var player + @EnvironmentObject private var playerControls @EnvironmentObject private var playlists @EnvironmentObject private var recents @EnvironmentObject private var search @@ -52,7 +53,7 @@ struct AppSidebarNavigation: View { BrowserPlayerControls { HStack(alignment: .center) { Spacer() - Image(systemName: "play.tv") + Image(systemName: "4k.tv") .renderingMode(.original) .font(.system(size: 60)) .foregroundColor(.accentColor) @@ -71,6 +72,7 @@ struct AppSidebarNavigation: View { .environmentObject(instances) .environmentObject(navigation) .environmentObject(player) + .environmentObject(playerControls) .environmentObject(playlists) .environmentObject(recents) .environmentObject(subscriptions)