Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2010-06-25 14:03:04 +0000
committerDarin Wright2010-06-25 14:03:04 +0000
commit3fb8c9d4108b582bcf61b6a73f7d43ee2b2fa802 (patch)
tree2f70b7005e21873cb2381c28a48f249ba707d519
parent8690dc0100e0f54129dcb1a77ce1923e33de9f80 (diff)
downloadeclipse.platform.debug-3fb8c9d4108b582bcf61b6a73f7d43ee2b2fa802.tar.gz
eclipse.platform.debug-3fb8c9d4108b582bcf61b6a73f7d43ee2b2fa802.tar.xz
eclipse.platform.debug-3fb8c9d4108b582bcf61b6a73f7d43ee2b2fa802.zip
Bug 317942 - "inspect element" window size isn't saved
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java
index 124bd972f..442eb0da2 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2005, 2009 IBM Corporation and others.
+ * Copyright (c) 2005, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -62,7 +62,7 @@ public abstract class DebugPopup extends PopupDialog {
* the dialog, or <code>null</code>
*/
public DebugPopup(Shell parent, Point anchor, String commandId) {
- super(parent, PopupDialog.INFOPOPUPRESIZE_SHELLSTYLE, true, false, true, true, false, null, null);
+ super(parent, PopupDialog.INFOPOPUPRESIZE_SHELLSTYLE, true, true, false, true, false, null, null);
fAnchor = anchor;
fCommandId = commandId;
}

Back to the top