handler.getContext().sendASyncCommand(composite);
}else{
UndoableComposite composite=new UndoableComposite();
composite.getFinalizerCommands().add(new SetEditStateCommand(handler, EditState.MODIFYING));
composite.getCommands().add(new SetEditStateCommand(handler, EditState.BUSY));
RemoveSelectedVerticesCommand removeCommand = new RemoveSelectedVerticesCommand(handler);
removeCommand.setRunAnimation(editBlackboard.getSelection().size()<10);
composite.getCommands().add(removeCommand);
handler.getContext().sendASyncCommand(composite);
}
}