Skip to content

Commit

Permalink
Don't limit LSO Copy/Move offset
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczy93 committed Jan 22, 2025
1 parent 343585b commit 65883eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CentrED/UI/Windows/LargeScaleOperationsWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ protected override void InternalDraw()
ImGui.RadioButton("Copy", ref copyMove_type, (int)LSO.CopyMove.Copy);
ImGui.SameLine();
ImGui.RadioButton("Move", ref copyMove_type, (int)LSO.CopyMove.Move);
UIManager.DragInt("Offset X", ref copyMove_offsetX, 1, -512, 512);
UIManager.DragInt("Offset Y", ref copyMove_offsetY, 1, -512, 512);
UIManager.DragInt("Offset X", ref copyMove_offsetX, 1, -CEDClient.Width * 8, CEDClient.Width * 8);
UIManager.DragInt("Offset Y", ref copyMove_offsetY, 1, -CEDClient.Height * 8, CEDClient.Height * 8);
ImGui.Checkbox("Erase statics from target area", ref copyMove_erase);
break;
}
Expand Down

0 comments on commit 65883eb

Please sign in to comment.