summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-04-10 04:44:53 +0000
committerdynaflash <[email protected]>2008-04-10 04:44:53 +0000
commit8652a800dcaf543fcedde794a80f608efe963ffb (patch)
tree574613673e0937652cf8922ae00e3328b330fb24 /macosx
parent499dda35806bcbadddede5f7d824b4a25da8cfa3 (diff)
MacGui: Do not call customSettingsUsed until we have an intelligent way to determine selected audio variables compared to presets so that presets stay selected.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1399 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.mm5
1 files changed, 4 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 278de715e..833bfff2f 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -3521,7 +3521,10 @@ the user is using "Custom" settings by determining the sender*/
drcField = fAudTrack4DrcField;
}
[drcField setStringValue: [NSString stringWithFormat: @"%.2f", [drcSlider floatValue]]];
- [self customSettingUsed: sender];
+ /* For now, do not call this until we have an intelligent way to determine audio track selections
+ * compared to presets
+ */
+ //[self customSettingUsed: sender];
}
- (IBAction) subtitleSelectionChanged: (id) sender