Skip to content

Commit

Permalink
Merge pull request #17 from flyhard/fixes
Browse files Browse the repository at this point in the history
Trying to fix #16
  • Loading branch information
ricemery authored May 12, 2024
2 parents 4f2c56f + 777f646 commit 301eda2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Empty file modified gradlew
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.chainstaysoftware.testing

import com.intellij.openapi.actionSystem.ActionUpdateThread
import com.intellij.ide.highlighter.JavaFileType
import com.intellij.openapi.actionSystem.AnAction
import com.intellij.openapi.actionSystem.AnActionEvent
Expand All @@ -14,7 +15,6 @@ import com.intellij.openapi.roots.ProjectFileIndex
import com.intellij.psi.PsiFile
import com.intellij.psi.search.FileTypeIndex
import com.intellij.psi.search.GlobalSearchScope
import com.intellij.util.indexing.FileBasedIndex


/**
Expand Down Expand Up @@ -78,4 +78,8 @@ class ModuleAction : AnAction() {
.filter { virtualFile -> instance.isInTestSourceContent(virtualFile) }
.size
}

override fun getActionUpdateThread(): ActionUpdateThread {
return ActionUpdateThread.EDT
}
}

0 comments on commit 301eda2

Please sign in to comment.