Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian de Alwis2016-05-17 20:51:21 +0000
committerBrian de Alwis2016-05-18 18:51:27 +0000
commit8c5781af7c90ae6f6baa91495a2ac0ca0f1dd907 (patch)
tree8b2d0f204a2a8112c2a06fa12a982aa2e2dbd974
parenta34cc649d3ab603db89a2e843e90ec6aa510671f (diff)
downloadeclipse.platform.ui-8c5781af7c90ae6f6baa91495a2ac0ca0f1dd907.tar.gz
eclipse.platform.ui-8c5781af7c90ae6f6baa91495a2ac0ca0f1dd907.tar.xz
eclipse.platform.ui-8c5781af7c90ae6f6baa91495a2ac0ca0f1dd907.zip
Bug 492811 - Duplicate commands / menu items "Toggle Full Screen"
Hide the new Window > Appearance > Toggle Fullscren Mode on OS X. Change-Id: I2121ed64a091821436dd4cf62c96401983e02ad0
-rw-r--r--bundles/org.eclipse.ui.ide/plugin.xml13
1 files changed, 13 insertions, 0 deletions
diff --git a/bundles/org.eclipse.ui.ide/plugin.xml b/bundles/org.eclipse.ui.ide/plugin.xml
index d56880cb493..4fe0906d07a 100644
--- a/bundles/org.eclipse.ui.ide/plugin.xml
+++ b/bundles/org.eclipse.ui.ide/plugin.xml
@@ -2517,6 +2517,19 @@
<command
commandId="org.eclipse.ui.window.fullscreenmode"
style="push">
+ <visibleWhen
+ checkEnabled="false">
+ <!--
+ bug 492811: remove test in 4.7 once
+ org.eclipse.ui.cocoa.fullscreenWindow is removed
+ -->
+ <not>
+ <systemTest
+ property="osgi.ws"
+ value="cocoa">
+ </systemTest>
+ </not>
+ </visibleWhen>
</command>
</menuContribution>
</extension>

Back to the top