diff options
| author | Jacob Palecki <[email protected]> | 2020-09-08 01:09:19 -0700 |
|---|---|---|
| committer | Jacob Palecki <[email protected]> | 2020-09-08 01:09:19 -0700 |
| commit | 254a66eda9d9f6add21937b3570d29f64af4ab1e (patch) | |
| tree | 5d5a7995ae14d9aba924024a1694c5d1760634c6 /grapher/Models/Options/ApplyOptions.cs | |
| parent | Alignment for whole mode works (diff) | |
| download | rawaccel-254a66eda9d9f6add21937b3570d29f64af4ab1e.tar.xz rawaccel-254a66eda9d9f6add21937b3570d29f64af4ab1e.zip | |
Fix few small bugs
Diffstat (limited to 'grapher/Models/Options/ApplyOptions.cs')
| -rw-r--r-- | grapher/Models/Options/ApplyOptions.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/grapher/Models/Options/ApplyOptions.cs b/grapher/Models/Options/ApplyOptions.cs index 76a3bb8..5e4aef4 100644 --- a/grapher/Models/Options/ApplyOptions.cs +++ b/grapher/Models/Options/ApplyOptions.cs @@ -163,7 +163,10 @@ namespace grapher.Models.Options public void OnByComponentCheckedChange(object sender, EventArgs e) { - EnableByComponentApplication(); + if (ByComponentVectorMenuItem.Checked) + { + EnableByComponentApplication(); + } } public void ShowWholeSet() |