Skip to content

Commit

Permalink
Merge pull request #3951 from Flanker32/hanxiao/dumb
Browse files Browse the repository at this point in the history
Fix HIDE_DEFAULT_EDITOR is only for DeumAware issue
  • Loading branch information
Flanker32 authored Jan 19, 2020
2 parents 8cb6fa8 + 35c90c0 commit 3ab19bd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@

import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.fileEditor.*;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.Disposer;
import com.intellij.openapi.util.Key;
Expand All @@ -34,7 +35,7 @@
/*
All the tool window should implement interface FileEditorProvider.
*/
public class JobViewEditorProvider implements FileEditorProvider {
public class JobViewEditorProvider implements FileEditorProvider, DumbAware {

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

0 comments on commit 3ab19bd

Please sign in to comment.