mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-26 06:20:24 +00:00
Color dialog fixes for alpha
This commit is contained in:
parent
440939f91d
commit
f63ce071a1
1 changed files with 2 additions and 2 deletions
|
@ -76,8 +76,8 @@ namespace Toolbox.Library.Forms
|
||||||
redUD.Value = ColorRGB.R;
|
redUD.Value = ColorRGB.R;
|
||||||
greenUD.Value = ColorRGB.G;
|
greenUD.Value = ColorRGB.G;
|
||||||
blueUD.Value = ColorRGB.B;
|
blueUD.Value = ColorRGB.B;
|
||||||
alphaUD.Value = ColorRGB.A;
|
alphaUD.Value = Alpha;
|
||||||
hexTB.Text = Utils.ColorToHex(colorSelector1.Color);
|
hexTB.Text = Utils.ColorToHex(NewColor);
|
||||||
|
|
||||||
loaded = true;
|
loaded = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue