1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00

We should only be able to select songs

This commit is contained in:
Daniel Barber 2019-02-13 08:31:06 -05:00
parent ba51e99e41
commit ffedba5c84
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -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!
}