Skip to content

Commit

Permalink
Fix example app
Browse files Browse the repository at this point in the history
  • Loading branch information
beyama committed Feb 1, 2024
1 parent 3071eb9 commit 4988c24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Example/Example App/StreamDeckHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class StreamDeckHandler {
case let .rotaryEncoderRotation(index, rotation):
print("Rotary \(index) rotation \"\(rotation)\" on \(device.infoText).")

case let .touch(x, y):
print("Did touch at (x:\(x), y:\(y)) on \(device.infoText).")
case let .touch(point):
print("Did touch at (\(point.debugDescription)) on \(device.infoText).")

case .fling:
print("Did fling to \(event.direction) on \(device.infoText).")
Expand Down

0 comments on commit 4988c24

Please sign in to comment.