mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
Use RGB color over RGBA for adjusting image editor background
This commit is contained in:
parent
459372003c
commit
b63e0b4819
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue