Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java')
-rw-r--r--org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java
index 72f22f761..4f5d6e81f 100644
--- a/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java
+++ b/org.eclipse.debug.tests/src/org/eclipe/debug/tests/viewer/model/CheckTests.java
@@ -48,7 +48,9 @@ abstract public class CheckTests extends TestCase {
protected void setUp() throws Exception {
fDisplay = PlatformUI.getWorkbench().getDisplay();
fShell = new Shell(fDisplay, SWT.ON_TOP | SWT.SHELL_TRIM);
- fShell.setMaximized(true);
+ // Maximizing a shell with SWT.ON_TOP doesn't work on Linux (bug 325465)
+ //fShell.setMaximized(true);
+ fShell.setSize(800, 600);
fShell.setLayout(new FillLayout());
fViewer = createViewer(fDisplay, fShell);

Back to the top