From faa60733b7c002c273cc29de36ba24e57b4f6cd2 Mon Sep 17 00:00:00 2001 From: Daniel Barber Date: Tue, 28 Jan 2020 08:55:07 -0500 Subject: [PATCH] Set current playing cover art background to black This makes non square cover art look better. --- Persephone/Components/Queue/QueueViewController.swift | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Persephone/Components/Queue/QueueViewController.swift b/Persephone/Components/Queue/QueueViewController.swift index e34c73a..23d4905 100644 --- a/Persephone/Components/Queue/QueueViewController.swift +++ b/Persephone/Components/Queue/QueueViewController.swift @@ -29,6 +29,9 @@ class QueueViewController: NSViewController { queueView.columnAutoresizingStyle = .sequentialColumnAutoresizingStyle queueView.registerForDraggedTypes([.songPasteboardType, .albumPasteboardType]) queueView.draggingDestinationFeedbackStyle = .regular + + queueCoverArtImage.wantsLayer = true + queueCoverArtImage.layer?.backgroundColor = CGColor.black } deinit {