diff options
| author | Jacob Palecki <[email protected]> | 2020-07-29 21:09:48 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-07-29 21:09:48 -0700 |
| commit | c30c1382668e716a245255083a48d8c6a9f3db36 (patch) | |
| tree | 769c426ad57df230244fa9fff03b9e3e07e1702a /grapher/FieldXY.cs | |
| parent | Add FieldXY (diff) | |
| download | rawaccel-c30c1382668e716a245255083a48d8c6a9f3db36.tar.xz rawaccel-c30c1382668e716a245255083a48d8c6a9f3db36.zip | |
Fix a few bugs around fieldXY
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 f06cc4f..60da3a4 100644 --- a/grapher/FieldXY.cs +++ b/grapher/FieldXY.cs @@ -52,11 +52,11 @@ namespace grapher { if (LockCheckBox.CheckState == CheckState.Checked) { - SetUnlocked(); + SetLocked(); } else { - SetLocked(); + SetUnlocked(); } } |