I’m trying to run a gradle task e.g `clean` direct...
# intellij-plugins
s
I’m trying to run a gradle task e.g 
clean
 directly from my plugin like this
Copy code
GradleExecuteTaskAction.runGradle(
            project,
            DefaultRunExecutor.getRunExecutorInstance(),
            project.basePath!!,
            "clean"
        )
This executes the task but requires that the plugin window is closed first, is there a way to allow this task to run even while the plugin window is actively visible?
DialogWrapper.setModal(false)
solved my problem