Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSnjezana Peco2016-05-07 20:00:50 +0000
committerVictor Rubezhny2016-05-12 01:29:44 +0000
commit809563d64d67abb0c002c27e36d17809d417da73 (patch)
tree53b654f0ef5612f3b939b89489d37dea0949d0fe
parent37ca115c4f1a06feec60ae5f11b9788cbff8cfac (diff)
downloadwebtools.sourceediting-809563d64d67abb0c002c27e36d17809d417da73.tar.gz
webtools.sourceediting-809563d64d67abb0c002c27e36d17809d417da73.tar.xz
webtools.sourceediting-809563d64d67abb0c002c27e36d17809d417da73.zip
Bug 490326 - Hover text over a node takes whole workspace area when the file is large
Change-Id: I337ed8965cf10ef00fa63a25d7167ae82c98f155 Signed-off-by: Snjezana Peco <snjeza.peco@gmail.com>
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
index cc7e46fd1b..506cacf445 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
@@ -2793,7 +2793,7 @@ public class StructuredTextEditor extends TextEditor {
fProjectionSupport.addSummarizableAnnotationType("org.eclipse.ui.workbench.texteditor.warning"); //$NON-NLS-1$
fProjectionSupport.setHoverControlCreator(new IInformationControlCreator() {
public IInformationControl createInformationControl(Shell parent) {
- return new DefaultInformationControl(parent);
+ return new DefaultInformationControl(parent, EditorsUI.getTooltipAffordanceString());
}
});
fProjectionSupport.install();

Back to the top