diff options
| author | Sidiouth <[email protected]> | 2020-08-31 16:15:58 -0400 |
|---|---|---|
| committer | Sidiouth <[email protected]> | 2020-08-31 16:15:58 -0400 |
| commit | 6432e9b8b0b25f6a3b04b7f87eaff7d84d04c960 (patch) | |
| tree | dadde7a477a58d7bda7dda4db5a75bc2190456b2 /grapher/Layouts | |
| parent | Merge pull request #16 from JacobPalecki/Misc (diff) | |
| download | rawaccel-6432e9b8b0b25f6a3b04b7f87eaff7d84d04c960.tar.xz rawaccel-6432e9b8b0b25f6a3b04b7f87eaff7d84d04c960.zip | |
Initial commit
-Right-alight option labels in the gui
-Allow users to modify the string already in the options field
Diffstat (limited to 'grapher/Layouts')
| -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 a4d0827..263c8c5 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]) { |