diff options
| author | AShifter <[email protected]> | 2017-10-03 20:45:18 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-03 20:45:18 -0600 |
| commit | 6f0e4160117bfbd04ba918b2f2604afe1959877f (patch) | |
| tree | 3d658f306135e53c2198c3f8eacfb4000f32d47d /ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs | |
| parent | 5077745a2c10c993c22e00d1ce33b733563e2ac7 (diff) | |
| parent | 385d800066822cdf7467a90f6168026b6603573e (diff) | |
| download | shiftos-rewind-6f0e4160117bfbd04ba918b2f2604afe1959877f.tar.gz shiftos-rewind-6f0e4160117bfbd04ba918b2f2604afe1959877f.tar.bz2 shiftos-rewind-6f0e4160117bfbd04ba918b2f2604afe1959877f.zip | |
Merge pull request #8 from AShifter/master
Master
Diffstat (limited to 'ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs')
| -rw-r--r-- | ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs index 1534f36..7a97915 100644 --- a/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs +++ b/ShiftOS.Main/ShiftOS/Apps/ShifterStuff/SelectColor.cs @@ -17,7 +17,7 @@ namespace ShiftOS.Main.ShiftOS.Apps } - private Color btnSetColor_Click(object sender, EventArgs e) + private Color setColor() { _colorType1 = Int32.Parse(redUpDown.Value.ToString()); _colorType2 = Int32.Parse(greenUpDown.Value.ToString()); @@ -41,5 +41,10 @@ namespace ShiftOS.Main.ShiftOS.Apps } return _finalColor; } + + private void btnSetColor_Click(object sender, EventArgs e) + { + setColor(); + } } - } +} |
