Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/insidegui/WWDC
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jun 21, 2024
2 parents aaba277 + 60f7494 commit dfc77d3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions PlayerUI/Views/PUIPlayerView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1137,7 +1137,9 @@ public final class PUIPlayerView: NSView {
case leftArrow
case rightArrow
case minus
case lessThan
case plus
case greaterThan
case j
case k
case l
Expand All @@ -1162,7 +1164,9 @@ public final class PUIPlayerView: NSView {
switch character {
case " ": return .spaceBar
case "-": return .minus
case "<": return .lessThan
case "+": return .plus
case ">": return .greaterThan
case "j": return .j
case "k": return .k
case "l": return .l
Expand Down Expand Up @@ -1214,11 +1218,11 @@ public final class PUIPlayerView: NSView {
self.goForwardInTime(nil)
return nil

case .minus:
case .minus, .lessThan:
self.reduceSpeed()
return nil

case .plus:
case .plus, .greaterThan:
self.increaseSpeed()
return nil
}
Expand Down

0 comments on commit dfc77d3

Please sign in to comment.