mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
IDEA-359334 Action Gradle.DownloadSources always visible in all AbstractExternalSystemToolWindowFactory implemetations
(cherry picked from commitb3857c0eef) (cherry picked from commit8722162e99) (cherry picked from commit67b89380ff)
This commit is contained in:
@@ -32,4 +32,6 @@ class GradleDownloadSourcesAction : ExternalSystemAction() {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
override fun isVisible(e: AnActionEvent) = getSystemId(e) == GradleConstants.SYSTEM_ID
|
||||
}
|
||||
@@ -63,7 +63,9 @@ class ToolbarDependencyAnalyzerAction : DependencyAnalyzerAction() {
|
||||
|
||||
override fun getSystemId(e: AnActionEvent) = GradleConstants.SYSTEM_ID
|
||||
|
||||
override fun isEnabledAndVisible(e: AnActionEvent) = true
|
||||
override fun isEnabledAndVisible(e: AnActionEvent): Boolean {
|
||||
return e.getData(ExternalSystemDataKeys.EXTERNAL_SYSTEM_ID) == GradleConstants.SYSTEM_ID
|
||||
}
|
||||
|
||||
override fun setSelectedState(view: DependencyAnalyzerView, e: AnActionEvent) {
|
||||
viewAction.setSelectedState(view, e)
|
||||
|
||||
Reference in New Issue
Block a user