Use RGB color over RGBA for adjusting image editor background

This commit is contained in:
KillzXGaming 2020-07-07 16:56:28 -04:00
parent 459372003c
commit b63e0b4819

View file

@ -1395,8 +1395,8 @@ namespace Toolbox.Library.Forms
};
colorDlg.ColorChanged += delegate
{
((PictureBox)sender).BackColor = colorDlg.NewColor;
Runtime.CustomPicureBoxBGColor = colorDlg.NewColor;
((PictureBox)sender).BackColor = colorDlg.ColorRGB;
Runtime.CustomPicureBoxBGColor = colorDlg.ColorRGB;
UpdateBackgroundImage();
};
colorDlg.Show();