We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34bd0d0 commit 47ff6e8Copy full SHA for 47ff6e8
Submariner/SBTracklistController.swift
@@ -56,6 +56,12 @@ import Cocoa
56
57
// #MARK: - IBActions
58
59
+ override func trackDoubleClick(_ sender: Any!) {
60
+ // We have to override this because if the replace tracklist option is enabled,
61
+ // it duplicates the tracklist
62
+ SBPlayer.sharedInstance().play(index: self.selectedTrackRow)
63
+ }
64
+
65
@IBAction func delete(_ sender: Any) {
66
if playlistTableView.selectedRow != -1 {
67
SBPlayer.sharedInstance().remove(trackIndexSet: playlistTableView.selectedRowIndexes)
0 commit comments