protected void actionPerformed(final GuiEditor editor, final List<RadComponent> selection, final AnActionEvent e) { IndentProperty indentProperty = IndentProperty.getInstance(editor.getProject()); for(RadComponent c: selection) { int indent = indentProperty.getValue(c).intValue(); indentProperty.setValueEx(c, adjustIndent(indent)); } }