diff options
| author | Jacob Palecki <[email protected]> | 2020-08-12 18:18:34 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-08-12 18:18:34 -0700 |
| commit | ae18a1a06060ef66d317af521032ac22fcd88eb3 (patch) | |
| tree | a5eb5c07257c83061bf2f6506779120c2f550f34 /grapher/FieldXY.cs | |
| parent | Nicer decimals, enter press not needed to enter values (diff) | |
| download | rawaccel-ae18a1a06060ef66d317af521032ac22fcd88eb3.tar.xz rawaccel-ae18a1a06060ef66d317af521032ac22fcd88eb3.zip | |
Fixed some edge cases around not using enter
Diffstat (limited to 'grapher/FieldXY.cs')
| -rw-r--r-- | grapher/FieldXY.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/grapher/FieldXY.cs b/grapher/FieldXY.cs index 87bda18..87e0b9c 100644 --- a/grapher/FieldXY.cs +++ b/grapher/FieldXY.cs @@ -9,9 +9,9 @@ namespace grapher { public class FieldXY { - public const int DefaultSeparation = 6; + public const int DefaultSeparation = 4; - public const string ShortenedFormatString = "#.###"; + public const string ShortenedFormatString = "0.###"; public FieldXY(TextBox xBox, TextBox yBox, CheckBox lockCheckBox, Form containingForm, double defaultData) { |