mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-02-20 19:02:12 +00:00
Curve Linedefs Mode: fixed a problem where the curve would not flip when being dragged with the mouse
This commit is contained in:
parent
7dd0a0a4af
commit
c748209eba
1 changed files with 1 additions and 1 deletions
|
@ -502,7 +502,7 @@ namespace CodeImp.DoomBuilder.BuilderModes
|
|||
if(panel.Angle == 0 && (Math.Sign(offset - prevoffset) != Math.Sign(panel.Distance)))
|
||||
{
|
||||
// Set new distance without triggering the update...
|
||||
panel.SetValues(panel.Vertices, -panel.Distance, panel.Angle, panel.FixedCurve, panel.FixedCurveOutwards);
|
||||
panel.SetValues(panel.Vertices, -panel.Distance, panel.Angle, panel.FixedCurve, !panel.FixedCurveOutwards);
|
||||
|
||||
// Recalculate affected values...
|
||||
perpendicular *= -1;
|
||||
|
|
Loading…
Reference in a new issue