Skip to content

Commit

Permalink
Disabling seek forward/backward because they're causing double events…
Browse files Browse the repository at this point in the history
… and I don't need them for now.
  • Loading branch information
Avi Cherry committed Jul 16, 2018
1 parent 5c0612d commit cd8252c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bubo/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class AppDelegate: NSObject, NSApplicationDelegate {

remoteCommandCenter.previousTrackCommand.addTarget(self, action: #selector(AppDelegate.handlePreviousTrackCommandEvent(event:)))

remoteCommandCenter.seekForwardCommand.addTarget(self, action: #selector(AppDelegate.handleSeekForwardCommandEvent(event:)))

remoteCommandCenter.seekBackwardCommand.addTarget(self, action: #selector(AppDelegate.handleSeekBackwardCommandEvent(event:)))
// remoteCommandCenter.seekForwardCommand.addTarget(self, action: #selector(AppDelegate.handleSeekForwardCommandEvent(event:)))
//
// remoteCommandCenter.seekBackwardCommand.addTarget(self, action: #selector(AppDelegate.handleSeekBackwardCommandEvent(event:)))

}

Expand Down

0 comments on commit cd8252c

Please sign in to comment.