Why are file options disabled for macOS? A number of workspace commands have the following: !isOSX && this.isElectron()
Furthermore, is there any way to avoid this (Have also tried menus with no OS checks, FILE_OPEN for example)? We are using the following code to enable a workspace command:
@injectable()
export class ProjectCreatorMenuContribution implements MenuContribution {
registerMenus(menus: MenuModelRegistry): void {
menus.registerMenuAction(CommonMenus.FILE_NEW, {
commandId: ProjectCreateCommand.id,
label: 'New Project'
});
}
}
Thanks for your help!