Skip to content

Commit

Permalink
Make casing match file system
Browse files Browse the repository at this point in the history
- Issue MatterHackers/MCCentral#4003
Crash when selecting mosaic tile
  • Loading branch information
jlewin committed Aug 20, 2018
1 parent c18908f commit 0e698cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DesignTools/Operations/AlignObject3D.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public AlignObject3D(IObject3D item, FaceAlign boundingFacesToAlign, Vector3 pos
public double XOffset { get; set; } = 0;

[DisplayName("Y")]
[Icons(new string[] { "424.png", "align_bottom.png", "align_center_y.png", "align_top.png", "align_origin.png" })]
[Icons(new string[] { "424.png", "align_bottom.png", "align_center_y.png", "align_Top.png", "align_origin.png" })]
public Align YAlign { get; set; } = Align.None;

[DisplayName("Start Y")]
Expand All @@ -178,7 +178,7 @@ public AlignObject3D(IObject3D item, FaceAlign boundingFacesToAlign, Vector3 pos
public double YOffset { get; set; } = 0;

[DisplayName("Z")]
[Icons(new string[] { "424.png", "align_bottom.png", "align_center_y.png", "align_top.png", "align_origin.png" })]
[Icons(new string[] { "424.png", "align_bottom.png", "align_center_y.png", "align_Top.png", "align_origin.png" })]
public Align ZAlign { get; set; } = Align.None;

[DisplayName("Start Z")]
Expand Down

0 comments on commit 0e698cb

Please sign in to comment.