From: Dmitry Jemerov Date: Fri, 12 Feb 2010 13:52:48 +0000 (+0300) Subject: dumb-aware (IDEA-52224) X-Git-Tag: review-1~11^2~8 X-Git-Url: https://repo.or.cz/w/fedora-idea.git/commitdiff_plain/25caeaa5fb37554be5ef9f4670545615417d4ece dumb-aware (IDEA-52224) --- diff --git a/platform/platform-impl/src/com/intellij/ide/actions/tree/BaseTreeNodeAction.java b/platform/platform-impl/src/com/intellij/ide/actions/tree/BaseTreeNodeAction.java index 5d80cae108..a954a9d993 100644 --- a/platform/platform-impl/src/com/intellij/ide/actions/tree/BaseTreeNodeAction.java +++ b/platform/platform-impl/src/com/intellij/ide/actions/tree/BaseTreeNodeAction.java @@ -18,11 +18,12 @@ package com.intellij.ide.actions.tree; import com.intellij.openapi.actionSystem.AnAction; import com.intellij.openapi.actionSystem.AnActionEvent; import com.intellij.openapi.actionSystem.PlatformDataKeys; +import com.intellij.openapi.project.DumbAware; import com.intellij.ui.treeStructure.treetable.TreeTable; import javax.swing.*; -abstract class BaseTreeNodeAction extends AnAction { +abstract class BaseTreeNodeAction extends AnAction implements DumbAware { public BaseTreeNodeAction() { setEnabledInModalContext(true); }