Commit e6578e3d authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: remove level 0 from the post-pp menu

parent 165779f7
......@@ -285,11 +285,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