Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2006-09-25 14:08:19 +0000
committerDarin Wright2006-09-25 14:08:19 +0000
commitc0337a48b4a313d19a24149ae1efbbd965c1ecdf (patch)
treebcd56469b66a609f31e6ed2f3507cfdf84a85bb9 /org.eclipse.debug.ui/ui
parent138f2439985d093dc79cb1b75ce6345aff714e6a (diff)
downloadeclipse.platform.debug-c0337a48b4a313d19a24149ae1efbbd965c1ecdf.tar.gz
eclipse.platform.debug-c0337a48b4a313d19a24149ae1efbbd965c1ecdf.tar.xz
eclipse.platform.debug-c0337a48b4a313d19a24149ae1efbbd965c1ecdf.zip
Bug 76341 [evaluation] Yellow popup box cannot be moved easily
Diffstat (limited to 'org.eclipse.debug.ui/ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/DebugPopup.java2
1 files changed, 1 insertions, 1 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 465bb0299..38b96c95f 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
@@ -68,7 +68,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, true, false, true, null, null);
+ super(parent, PopupDialog.INFOPOPUPRESIZE_SHELLSTYLE, true, true, true, false, null, null);
fAnchor = anchor;
fCommandId = commandId;
}

Back to the top