From 57dd9cfe69cb848caea6d896030b448e4e2dedf2 Mon Sep 17 00:00:00 2001
From: Arkadiusz Fal <arek@arekf.net>
Date: Sat, 6 Aug 2022 16:22:41 +0200
Subject: [PATCH] Minor controls overlay changes

---
 Shared/Player/Controls/ControlsOverlay.swift | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Shared/Player/Controls/ControlsOverlay.swift b/Shared/Player/Controls/ControlsOverlay.swift
index 472b468b..b409614b 100644
--- a/Shared/Player/Controls/ControlsOverlay.swift
+++ b/Shared/Player/Controls/ControlsOverlay.swift
@@ -41,6 +41,8 @@ struct ControlsOverlay: View {
     private var backendButtons: some View {
         ForEach(PlayerBackendType.allCases, id: \.self) { backend in
             backendButton(backend)
+                .modifier(ControlBackgroundModifier())
+                .clipShape(RoundedRectangle(cornerRadius: 4))
         }
     }
 
@@ -67,6 +69,7 @@ struct ControlsOverlay: View {
             }
         } label: {
             Label("Increase rate", systemImage: "plus")
+                .foregroundColor(.primary)
                 .labelStyle(.iconOnly)
                 .padding(8)
                 .frame(height: 30)
@@ -90,6 +93,7 @@ struct ControlsOverlay: View {
             }
         } label: {
             Label("Decrease rate", systemImage: "minus")
+                .foregroundColor(.primary)
                 .labelStyle(.iconOnly)
                 .padding(8)
                 .frame(height: 30)