Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/MacPlatform/MacIntegrationCommands.cs')
-rw-r--r--main/src/addins/MacPlatform/MacIntegrationCommands.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/main/src/addins/MacPlatform/MacIntegrationCommands.cs b/main/src/addins/MacPlatform/MacIntegrationCommands.cs
index 74f42bb874..c094f33dd1 100644
--- a/main/src/addins/MacPlatform/MacIntegrationCommands.cs
+++ b/main/src/addins/MacPlatform/MacIntegrationCommands.cs
@@ -39,6 +39,7 @@ namespace MonoDevelop.MacIntegration
HideOthers,
ShowOthers,
Services,
+ OrderFrontCharacterPalette,
}
class MacMinimizeWindowHandler : CommandHandler
@@ -104,4 +105,10 @@ namespace MonoDevelop.MacIntegration
w.PerformZoom (w);
}
}
+
+ class MacOrderFrontCharacterPaletteHandler : CommandHandler
+ {
+ protected override void Run ()
+ => NSApplication.SharedApplication.OrderFrontCharacterPalette (NSApplication.SharedApplication);
+ }
}