summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--macosx/Controller.mm16
1 files changed, 7 insertions, 9 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 9f3520b3e..88d700629 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -1523,8 +1523,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
job->abitrate = [[fAudBitratePopUp selectedItem] tag];
/* Dynamic Range Compression */
- job->dynamic_range_compression = [fAudDrcSlider floatValue];
-
+ job->dynamic_range_compression = [fAudDrcField floatValue];
/* set vfr according to the Picture Window */
if ([fPictureController vfr])
@@ -2346,13 +2345,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
[self twoPassCheckboxChanged: sender];
}
-- (IBAction) audioDRCSliderChanged: (id) sender
-{
- [fAudDrcField setStringValue: [NSString stringWithFormat: @"%f", [fAudDrcSlider floatValue]]];
- [self customSettingUsed: sender];
-}
-
-
/* Method to determine if we should change the UI
To reflect whether or not a Preset is being used or if
the user is using "Custom" settings by determining the sender*/
@@ -3007,6 +2999,12 @@ the user is using "Custom" settings by determining the sender*/
}
+- (IBAction) audioDRCSliderChanged: (id) sender
+{
+ [fAudDrcField setStringValue: [NSString stringWithFormat: @"%.2f", [fAudDrcSlider floatValue]]];
+ [self customSettingUsed: sender];
+}
+
- (IBAction) subtitleSelectionChanged: (id) sender
{
if ([fSubPopUp indexOfSelectedItem] == 0)