Skip to content

Commit

Permalink
fix: LSP console shouldn't be hidden when IJ is indexing
Browse files Browse the repository at this point in the history
Signed-off-by: Fred Bricon <fbricon@gmail.com>
  • Loading branch information
fbricon authored and angelozerr committed May 26, 2023
1 parent b4cdeaa commit 4414001
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
*******************************************************************************/
package com.redhat.devtools.intellij.lsp4ij.console;

import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.wm.ToolWindow;
import com.intellij.openapi.wm.ToolWindowFactory;
Expand All @@ -26,7 +27,7 @@
*
* @author Angelo ZERR
*/
public class LSPConsoleToolWindowFactory implements ToolWindowFactory {
public class LSPConsoleToolWindowFactory implements ToolWindowFactory, DumbAware {

@Override
public void createToolWindowContent(@NotNull Project project, @NotNull ToolWindow toolWindow) {
Expand Down

0 comments on commit 4414001

Please sign in to comment.