diff options
| author | JacobPalecki <[email protected]> | 2020-08-31 23:06:21 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-31 23:06:21 -0700 |
| commit | 26138cb0e38358f15dd560d4a7b229926f534a89 (patch) | |
| tree | 565614055bb152c0a68656f5d6781fb7dbc8e07c /grapher/Layouts/LayoutBase.cs | |
| parent | Merge pull request #17 from a1xd/indep (diff) | |
| parent | Initial commit (diff) | |
| download | rawaccel-26138cb0e38358f15dd560d4a7b229926f534a89.tar.xz rawaccel-26138cb0e38358f15dd560d4a7b229926f534a89.zip | |
Merge pull request #1 from Sidiouth/sidi
Small GUI tweaks
Diffstat (limited to 'grapher/Layouts/LayoutBase.cs')
| -rw-r--r-- | grapher/Layouts/LayoutBase.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grapher/Layouts/LayoutBase.cs b/grapher/Layouts/LayoutBase.cs index 3ae2e90..eed1716 100644 --- a/grapher/Layouts/LayoutBase.cs +++ b/grapher/Layouts/LayoutBase.cs @@ -43,7 +43,7 @@ namespace grapher.Layouts public void Layout(Option[] options, OptionXY[] optionsXY, Button button) { // Relies on AccelOptions to keep lengths correct. - for (int i = 0; i< options.Length; i++) + for (int i = 0; i < options.Length; i++) { if (ShowOptions[i]) { |