Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

Commit

Permalink
Hotfix for the thickness decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
Refragg committed Apr 3, 2021
1 parent d442022 commit 2b2af57
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Controller Input Display/Controller Input Display/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,8 @@ public Settings()
Minimum = 1,
Location = new Point(220, 283),
Size = new Size(70, 23),
Value = (decimal)Display.LStickWidth
Value = (decimal)Display.LStickWidth,
DecimalPlaces = 2,
};
LSWidthUpDown.ValueChanged += UpdateThicknessSettings;
Controls.Add(LSWidthUpDown);
Expand All @@ -203,7 +204,8 @@ public Settings()
Minimum = 1,
Location = new Point(220, 312),
Size = new Size(70, 23),
Value = (decimal)Display.RStickWidth
Value = (decimal)Display.RStickWidth,
DecimalPlaces = 2,
};
RSWidthUpDown.ValueChanged += UpdateThicknessSettings;
Controls.Add(RSWidthUpDown);
Expand Down

0 comments on commit 2b2af57

Please sign in to comment.