mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[^ann] don't automatically show documentation in non-completion lookups (IDEA-95734)
(cherry-picked from 42c7f92)
This commit is contained in:
@@ -152,7 +152,7 @@ public class LookupManagerImpl extends LookupManager {
|
||||
public void run() {
|
||||
if (myActiveLookup == lookup && lookup.getCurrentItem() != null) {
|
||||
final CompletionProcess completion = CompletionService.getCompletionService().getCurrentCompletion();
|
||||
if (completion == null || !completion.isAutopopupCompletion()) {
|
||||
if (completion != null && !completion.isAutopopupCompletion()) {
|
||||
DocumentationManager.getInstance(myProject).showJavaDocInfo(editor, psiFile, false);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user