diff --git a/macosx/InfoWindowController.m b/macosx/InfoWindowController.m index 8c1b848cc..037660257 100644 --- a/macosx/InfoWindowController.m +++ b/macosx/InfoWindowController.m @@ -501,4 +501,12 @@ typedef enum [self resetInfo]; } +- (void) swipeWithEvent:(NSEvent *) event +{ + if ([event deltaX] < 0.0) + [self setNextTab]; + else if ([event deltaX] > 0.0) + [self setPreviousTab]; +} + @end