Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-05-21 19:33:28 +0000
committerChris Goldthorpe2009-05-21 19:33:28 +0000
commite7c47111778673ef65c106a41a1c20c765343bd6 (patch)
treea89b4cee8705d85c88725700e2e08a72585f32a5 /org.eclipse.help.ui
parenta993057695dc6cabc42758c4ae03c2c859895601 (diff)
downloadeclipse.platform.ua-e7c47111778673ef65c106a41a1c20c765343bd6.tar.gz
eclipse.platform.ua-e7c47111778673ef65c106a41a1c20c765343bd6.tar.xz
eclipse.platform.ua-e7c47111778673ef65c106a41a1c20c765343bd6.zip
Bug 277350 – [Help] OnMac OS child windows of he help browser are far too largev20090521
Diffstat (limited to 'org.eclipse.help.ui')
-rw-r--r--org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
index db7c2c227..a3bbcd76c 100644
--- a/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
+++ b/org.eclipse.help.ui/src/org/eclipse/help/ui/internal/browser/embedded/EmbeddedBrowserFactory.java
@@ -61,8 +61,7 @@ public class EmbeddedBrowserFactory implements IBrowserFactory {
*/
private boolean test() {
if (!Constants.OS_WIN32.equalsIgnoreCase(Platform.getOS())
- && !Constants.OS_LINUX.equalsIgnoreCase(Platform.getOS())
- && !Constants.OS_MACOSX.equalsIgnoreCase(Platform.getOS())) {
+ && !Constants.OS_LINUX.equalsIgnoreCase(Platform.getOS())) {
return false;
}
if (!tested) {

Back to the top