Skip to content

Commit

Permalink
Send airwheel gestures to remote panes
Browse files Browse the repository at this point in the history
  • Loading branch information
☃ Elliot Shepherd committed Aug 11, 2015
1 parent c49d540 commit 4fb7ce5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote/RemotePane.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (p *Pane) Gesture(gesture *gestic.GestureMessage) {
return
}

if gesture.Gesture.Gesture != gestic.GestureNone || gesture.Touch.Active() || gesture.Tap.Active() || gesture.DoubleTap.Active() {
if gesture.Gesture.Gesture != gestic.GestureNone || gesture.Touch.Active() || gesture.Tap.Active() || gesture.DoubleTap.Active() || gesture.AirWheel.Active {
p.out(Outgoing{false, gesture})
}
}
Expand Down

0 comments on commit 4fb7ce5

Please sign in to comment.