From 16dca7cf21909a4b8e180784752554dbf349bcb4 Mon Sep 17 00:00:00 2001 From: "Egor.Ushakov" Date: Tue, 8 Apr 2014 20:14:05 +0400 Subject: [PATCH] IDEA-123641 Breakpoints groups: for the java/javascriptExceptions nodes the MoveToGroup action is enabled but doesn't move AnyException subnodes --- .../xdebugger/impl/breakpoints/ui/BreakpointsDialog.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/breakpoints/ui/BreakpointsDialog.java b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/breakpoints/ui/BreakpointsDialog.java index 57619addb72d..ce47f118f821 100644 --- a/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/breakpoints/ui/BreakpointsDialog.java +++ b/platform/xdebugger-impl/src/com/intellij/xdebugger/impl/breakpoints/ui/BreakpointsDialog.java @@ -468,7 +468,7 @@ public class BreakpointsDialog extends DialogWrapper { } for (BreakpointItem item : myTreeController.getSelectedBreakpoints()) { Object breakpoint = item.getBreakpoint(); - if (item.allowedToRemove() && breakpoint instanceof XBreakpointBase) { + if (breakpoint instanceof XBreakpointBase) { ((XBreakpointBase)breakpoint).setGroup(groupName); } }