Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Barnes2004-09-29 16:21:36 +0000
committerKevin Barnes2004-09-29 16:21:36 +0000
commite3a989b0610139320a7faea0d78030014ab61c77 (patch)
tree92cf8ccec7778cd1337bcc234dd05b8873d56b3e
parent5dd828c099c0e5bfeee4a082a8b44d5a12616ea9 (diff)
downloadeclipse.platform.debug-e3a989b0610139320a7faea0d78030014ab61c77.tar.gz
eclipse.platform.debug-e3a989b0610139320a7faea0d78030014ab61c77.tar.xz
eclipse.platform.debug-e3a989b0610139320a7faea0d78030014ab61c77.zip
Bug 72209 - Inspect and Display popup does not allow copying of values
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/expression/PopupInformationControl.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/expression/PopupInformationControl.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/expression/PopupInformationControl.java
index b0580bf86..d88e6051d 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/expression/PopupInformationControl.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/views/expression/PopupInformationControl.java
@@ -220,7 +220,7 @@ public abstract class PopupInformationControl implements IInformationControl, II
submission = new HandlerSubmission(null, shell, null, commandId, closeHandler, Priority.MEDIUM);
commandSupport.addHandlerSubmission(submission);
- contextSupport.registerShell(shell, IWorkbenchContextSupport.TYPE_WINDOW);
+ contextSupport.registerShell(shell, IWorkbenchContextSupport.TYPE_DIALOG);
}
}

Back to the top