Skip to content

Commit

Permalink
Bring back Allow skips for pre Catalina OSes (oops!)
Browse files Browse the repository at this point in the history
  • Loading branch information
glouel committed Feb 3, 2020
1 parent 3f06d26 commit 52157b2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Aerial/Source/Views/AerialView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -457,12 +457,11 @@ final class AerialView: ScreenSaverView, CAAnimationDelegate {
object: currentItem)
player.actionAtItemEnd = AVPlayer.ActionAtItemEnd.none
}
/*

override func keyDown(with event: NSEvent) {
debugLog("keyDown")
let preferences = Preferences.sharedInstance

if preferences.allowSkips {
if PrefsVideos.allowSkips {
if event.keyCode == 124 {
if !isQuickFading {
// If we share, just call this on our main view
Expand Down Expand Up @@ -497,7 +496,6 @@ final class AerialView: ScreenSaverView, CAAnimationDelegate {
return true
}
}
*/

// MARK: - Extra Animations
private func fastFadeOut(andPlayNext: Bool) {
Expand Down

0 comments on commit 52157b2

Please sign in to comment.