Commit 00688943 authored by Felix Paul Kühne's avatar Felix Paul Kühne Committed by David Fuhrmann

macosx: remove level 0 from the post-pp menu

(cherry picked from commit e6578e3d925581af40e6ba102e1664b38a41b0e5)
Signed-off-by: default avatarDavid Fuhrmann <dfuhrmann@videolan.org>
parent 324a6b5a
......@@ -279,11 +279,11 @@ static VLCMainMenu *_o_sharedInstance = nil;
[o_mitem setTag: -1];
[o_mitem setEnabled: YES];
[o_mitem setTarget: self];
for (NSUInteger x = 0; x < 7; x++) {
for (NSUInteger x = 1; x < 7; x++) {
[o_mu_ffmpeg_pp addItemWithTitle:[NSString stringWithFormat:_NS("Level %i"), x]
action:@selector(togglePostProcessing:)
keyEquivalent:@""];
o_mitem = [o_mu_ffmpeg_pp itemAtIndex:x+1];
o_mitem = [o_mu_ffmpeg_pp itemAtIndex:x];
[o_mitem setEnabled: YES];
[o_mitem setTag:x];
[o_mitem setTarget: self];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment