Skip to content

Commit 3ab19bd

Browse files
authored
Merge pull request #3951 from Flanker32/hanxiao/dumb
Fix HIDE_DEFAULT_EDITOR is only for DeumAware issue
2 parents 8cb6fa8 + 35c90c0 commit 3ab19bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PluginsAndFeatures/azure-toolkit-for-intellij/src/com/microsoft/azure/hdinsight/jobs/framework/JobViewEditorProvider.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
import com.intellij.openapi.diagnostic.Logger;
2525
import com.intellij.openapi.fileEditor.*;
26+
import com.intellij.openapi.project.DumbAware;
2627
import com.intellij.openapi.project.Project;
2728
import com.intellij.openapi.util.Disposer;
2829
import com.intellij.openapi.util.Key;
@@ -34,7 +35,7 @@
3435
/*
3536
All the tool window should implement interface FileEditorProvider.
3637
*/
37-
public class JobViewEditorProvider implements FileEditorProvider {
38+
public class JobViewEditorProvider implements FileEditorProvider, DumbAware {
3839

3940
public static Key<IClusterDetail> JOB_VIEW_KEY = new Key<>("com.microsoft.azure.hdinsight.jobview");
4041
public static Key<String> JOB_VIEW_UUID = new Key<>("com.microsoft.azure.hdinsight.jobview.uuid");

0 commit comments

Comments
 (0)