Fix arrow direction values

This commit is contained in:
John Lewin 2018-12-31 12:10:40 -08:00
parent 45dffa01d0
commit 8fab51d6bc

View file

@ -276,10 +276,10 @@ namespace MatterHackers.MatterControl.Tour
var leftArrow = new ImageBuffer(rightArrow);
leftArrow.FlipX();
this.Image = rightArrow;
this.Image = leftArrow;
}
this.ArrowDirection = ArrowDirection;
this.ArrowDirection = arrowDirection;
}
public ImageBuffer Image { get; }