diff --git a/Persephone/Controllers/QueueViewController.swift b/Persephone/Controllers/QueueViewController.swift index dce8a6e..b36ecbe 100644 --- a/Persephone/Controllers/QueueViewController.swift +++ b/Persephone/Controllers/QueueViewController.swift @@ -178,5 +178,9 @@ class QueueViewController: NSViewController, NSOutlineViewDataSource, NSOutlineV } } + func outlineView(_ outlineView: NSOutlineView, shouldSelectItem item: Any) -> Bool { + return item is SongItem + } + @IBOutlet var queueView: NSOutlineView! }