]> git.lyx.org Git - lyx.git/blob - src/support/AppleSupport.m
#11756 hide additional menu items in edit menu on Mac
[lyx.git] / src / support / AppleSupport.m
1 /**
2  * \file AppleSupport.m
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Stephan Witt
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #import <Cocoa/Cocoa.h>
12 #include "AppleSupport.h"
13
14
15 void appleCleanupEditMenu() {
16
17         // Remove (disable) the "Start Dictation..." and "Emoji & Symbols" menu items
18         // from the "Edit" menu
19
20         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"NSDisabledDictationMenuItem"];
21         [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"NSDisabledCharacterPaletteMenuItem"];
22
23 }