diff options
author | dynaflash <[email protected]> | 2007-07-31 16:47:35 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-07-31 16:47:35 +0000 |
commit | 6c47d7e338ac4de8f826338783fab2f983646d76 (patch) | |
tree | f8bd3b2e493c22d12b434c2a198aadeb389a3e26 | |
parent | fb5b89e69493a28c1969f29ffdb06bb4783c7e9a (diff) |
MacGui: Fixed a minor bug where selecting the HB factory supplied default preset (currently HB-Normal) as your user specified preset would not make it bold until next launch.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@769 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 6a2628e54..29656e82c 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -4578,7 +4578,7 @@ the user is using "Custom" settings by determining the sender*/ { [[UserPresets objectAtIndex:[tableView selectedRow]] setObject:[NSNumber numberWithInt:2] forKey:@"Default"]; } - + presetUserDefault = [tableView selectedRow]; /* We save all of the preset data here */ [self savePreset]; |