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:
authorVsevolod Kukol <sevoku@xamarin.com>2016-04-21 11:39:11 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2016-04-21 11:39:11 +0300
commit9aa9813721dc456d180faaeaf8037d0d6cba97a2 (patch)
tree2abf4d52a6fe60d1dfbdf6f79664857fd45ac90f /main/src/addins/MacPlatform/MacPlatform.addin.xml
parentbb977fbedeaa5ef12d1b69e05fcddce6f1568429 (diff)
[MacPlatform] Add Zoom Window command
Diffstat (limited to 'main/src/addins/MacPlatform/MacPlatform.addin.xml')
-rw-r--r--main/src/addins/MacPlatform/MacPlatform.addin.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/main/src/addins/MacPlatform/MacPlatform.addin.xml b/main/src/addins/MacPlatform/MacPlatform.addin.xml
index b5f19162b6..b30596b41a 100644
--- a/main/src/addins/MacPlatform/MacPlatform.addin.xml
+++ b/main/src/addins/MacPlatform/MacPlatform.addin.xml
@@ -17,8 +17,12 @@
<Command id = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
defaultHandler = "MonoDevelop.MacIntegration.MacMinimizeWindowHandler"
_label = "_Minimize"
- _description = "Minimize the window"
+ _description = "Minimize the Window"
macShortcut = "Meta|M" />
+ <Command id = "MonoDevelop.MacIntegration.MacIntegrationCommands.ZoomWindow"
+ defaultHandler = "MonoDevelop.MacIntegration.MacZoomWindowHandler"
+ _label = "_Zoom"
+ _description = "Zoom the Window"/>
<Command id = "MonoDevelop.MacIntegration.MacIntegrationCommands.HideWindow"
defaultHandler = "MonoDevelop.MacIntegration.MacHideWindowHandler"
_label = "_Hide Application"
@@ -44,6 +48,7 @@
<Condition id = "Platform" value = "mac">
<CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.MinimizeWindow"
insertafter = "NxtPrvSeparator" />
+ <CommandItem id = "MonoDevelop.MacIntegration.MacIntegrationCommands.ZoomWindow" />
<SeparatorItem id = "winMinimizeSep" />
</Condition>
</Extension>