macOS版 Viewメニューから"Enter Full Screen"を削除
OSの仕様変更によるもの。下記ページ参照。
Developer Release Notes Cocoa Application Framework (macOS 10.12.2 and Earlier) https://developer.apple.com/library/content/releasenotes/AppKit/RN-AppKitOlderNotes/ ---- Full Screen Menu Item AppKit automatically creates an "Enter Full Screen" menu item after the application finishes launching if an equivalent menu item isn't found. If this menu item should not be created for your app, before NSApplicationDidFinishLaunchingNotification is sent you may set the NSFullScreenMenuItemEverywhere default to NO. - (void)applicationWillFinishLaunching:(nonnull NSNotification *)notification { [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"]; } ----
アプリケーション起動処理開始メソッド applicationWillFinishLaunching:aNotification に以下の処理を追加。
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"NSFullScreenMenuItemEverywhere"];
OS X 10.11(El Capitan)から、MIDITrailのViewメニューに"Enter Full Screen"が表示されるようになった。 このメニューを選択しても何も起こらないが、不要なので非表示にする。