From fd752209dfb2d4db9e1b999c98f4d91d750183c6 Mon Sep 17 00:00:00 2001 From: Kirill Kalishev Date: Mon, 30 Nov 2009 15:47:46 +0300 Subject: [PATCH] ActionGroup is DumbAware - to make popups work --- .../src/com/intellij/openapi/actionSystem/ActionGroup.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platform/platform-api/src/com/intellij/openapi/actionSystem/ActionGroup.java b/platform/platform-api/src/com/intellij/openapi/actionSystem/ActionGroup.java index 34b46a704f..d77dd1a7c8 100644 --- a/platform/platform-api/src/com/intellij/openapi/actionSystem/ActionGroup.java +++ b/platform/platform-api/src/com/intellij/openapi/actionSystem/ActionGroup.java @@ -15,6 +15,7 @@ */ package com.intellij.openapi.actionSystem; +import com.intellij.openapi.project.DumbAware; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; @@ -28,7 +29,7 @@ import java.util.HashSet; /** * Represents a group of actions. */ -public abstract class ActionGroup extends AnAction { +public abstract class ActionGroup extends AnAction implements DumbAware { private boolean myPopup; private final PropertyChangeSupport myChangeSupport = new PropertyChangeSupport(this); -- 2.11.4.GIT