Color dialog fixes for alpha

This commit is contained in:
KillzXGaming 2019-10-19 15:55:12 -04:00
parent 440939f91d
commit f63ce071a1

View file

@ -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;