use of org.freeplane.features.nodelocation.LocationModel in project freeplane by freeplane.
the class ChangeShiftYActor method setShiftY.
private void setShiftY(final NodeModel node, final int shiftY) {
final LocationModel locationModel = LocationModel.createLocationModel(node);
locationModel.setShiftY(shiftY);
Controller.getCurrentModeController().getMapController().nodeChanged(node);
}
Aggregations