summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorritsuka <[email protected]>2013-02-04 19:22:24 +0000
committerritsuka <[email protected]>2013-02-04 19:22:24 +0000
commita735c9046533954e1bba5cf8996d98e15b2e86cc (patch)
treeebb836419549245a0e7ccba3f3451c1eb9fed33f
parent81cf237836e97f9a0e23796da98f6411db783227 (diff)
MacGUI: add a missing else statement. Don't pass key event down the response chain after we handled it it.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5237 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r--macosx/HBPreviewController.m7
1 files changed, 4 insertions, 3 deletions
diff --git a/macosx/HBPreviewController.m b/macosx/HBPreviewController.m
index ba664059b..093c1058c 100644
--- a/macosx/HBPreviewController.m
+++ b/macosx/HBPreviewController.m
@@ -1257,10 +1257,11 @@
[fPictureSlider setIntegerValue:fPicture < [fPictureSlider maxValue] ? fPicture + 1 : fPicture];
[self pictureSliderChanged:self];
}
- [super keyDown:event];
+ else
+ [super keyDown:event];
}
-
- [super keyDown:event];
+ else
+ [super keyDown:event];
}
#pragma mark *** QTTime Utilities ***