summaryrefslogtreecommitdiffstats
path: root/macosx/HBVideoController.m
diff options
context:
space:
mode:
authorritsuka <[email protected]>2014-11-01 06:27:34 +0000
committerritsuka <[email protected]>2014-11-01 06:27:34 +0000
commit5c7503bccc274d2a432d3d96f94c731af27ef704 (patch)
tree295a867cf7525872d6529ad3eff3bf372ff0a9c3 /macosx/HBVideoController.m
parentf019d8caffcf72d9ee258dbc1c0ce700286c53e3 (diff)
MacGui: fix the constant quality / avg bitrate radio button selection when reloading a job from the queue.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6491 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBVideoController.m')
-rw-r--r--macosx/HBVideoController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBVideoController.m b/macosx/HBVideoController.m
index c3148b496..6bcbfb4c2 100644
--- a/macosx/HBVideoController.m
+++ b/macosx/HBVideoController.m
@@ -360,7 +360,7 @@ NSString *HBVideoEncoderChangedNotification = @"HBVideoEncoderChangedNotificatio
}
/* Video quality */
- self.qualityType = [queueToApply[@"VideoQualityType"] intValue];
+ self.qualityType = [queueToApply[@"VideoQualityType"] intValue] - 1;
[fVidBitrateField setStringValue:queueToApply[@"VideoAvgBitrate"]];