1
0
mirror of synced 2025-02-20 12:41:10 +01:00

Fix mistake

This commit is contained in:
KillzXGaming 2019-05-13 20:22:04 -04:00
parent b4fde67c82
commit 5351a22f18
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -21,7 +21,7 @@ namespace Switch_Toolbox.Library.Forms
CanResize = true;
stCheckBox1.BackColor = FillColor;
stButton1.BackColor = FillColor;
}
private void stButton1_Click(object sender, EventArgs e)
@ -29,7 +29,7 @@ namespace Switch_Toolbox.Library.Forms
ColorDialog colorDialog = new ColorDialog();
if (colorDialog.ShowDialog() == DialogResult.OK) {
FillColor = colorDialog.Color;
stCheckBox1.BackColor = FillColor;
stButton1.BackColor = FillColor;
}
}