summaryrefslogtreecommitdiffstats
path: root/macosx/HBPresets.m
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-03-07 19:43:17 +0000
committerdynaflash <[email protected]>2008-03-07 19:43:17 +0000
commit2cdbc53eac6122cfe3ea77db0728a8fb4f4d2271 (patch)
treee029033629f262bf0e0f37037bb8c71bcd82e35f /macosx/HBPresets.m
parent8463a0b011665a2da7ef549f155d9f935971a94a (diff)
MacGui: Initial implementation of drag and drop in the presets drawer.
- Allows drag and drop arrangement of custom user presets - Does not allow reordering of built in presets. - Sorting of presets now done only by type ie. built in and custom user. - Provides functionality for future nested presets and drag and drop arranging. - Subclasses the presets outline view for better control over drag and drop behavior git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1334 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBPresets.m')
-rw-r--r--macosx/HBPresets.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/macosx/HBPresets.m b/macosx/HBPresets.m
index 8ef02b81d..6ec5bb951 100644
--- a/macosx/HBPresets.m
+++ b/macosx/HBPresets.m
@@ -18,7 +18,6 @@
{
/* We receive the user presets array of dictionaries from controller.mm */
/* We re-create new built in presets programmatically and add them to our presets array */
- [UserPresets addObject:[self create360Preset]];
[UserPresets addObject:[self createAnimationPreset]];
[UserPresets addObject:[self createAppleTVPreset]];
[UserPresets addObject:[self createBedlamPreset]];
@@ -36,7 +35,7 @@
[UserPresets addObject:[self createPSThreePreset]];
[UserPresets addObject:[self createQuickTimePreset]];
[UserPresets addObject:[self createTelevisionPreset]];
-
+ [UserPresets addObject:[self create360Preset]];
/* return the newly regenerated preset array back to Controller.mm */
return UserPresets;
}