Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteicher2005-11-10 15:56:28 +0000
committerteicher2005-11-10 15:56:28 +0000
commit0d09717c0c47bd199082e96dee2e08d2e0f65a01 (patch)
tree67c9cb679f0bcf0ec40d8daf36f800dca656aa9f /org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java
parente8bb8f381c2eef996d46cf6d93b8602d9a438692 (diff)
downloadeclipse.platform.text-0d09717c0c47bd199082e96dee2e08d2e0f65a01.tar.gz
eclipse.platform.text-0d09717c0c47bd199082e96dee2e08d2e0f65a01.tar.xz
eclipse.platform.text-0d09717c0c47bd199082e96dee2e08d2e0f65a01.zip
115711 [content assist] Parameter hints disappear immediately
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java
index f01d243673e..17e6fa0a4b0 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/contentassist/ContextInformationPopup.java
@@ -196,7 +196,7 @@ class ContextInformationPopup implements IContentAssistListener {
} else if (count > 0) {
- // if any of the proposed context matches the any of the contexts on the stack,
+ // if any of the proposed context matches any of the contexts on the stack,
// assume that one (so, if context info is invoked repeatedly, the current
// info is kept)
for (int i= 0; i < contexts.length; i++) {
@@ -233,7 +233,6 @@ class ContextInformationPopup implements IContentAssistListener {
createContextSelector();
setContexts(contexts);
displayContextSelector();
- hideContextInfoPopup();
}
}
});

Back to the top