For some reason the SetColorDialog(); was erased in last commit, added back and working as intended now.
This commit is contained in:
parent
52bf8bf025
commit
099fea5c8e
|
@ -488,11 +488,6 @@ namespace BizHawk.MultiClient
|
|||
}
|
||||
}
|
||||
|
||||
private void ColorPanel_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void XNumeric_Click(object sender, EventArgs e)
|
||||
{
|
||||
XNumericChange();
|
||||
|
@ -503,19 +498,28 @@ namespace BizHawk.MultiClient
|
|||
YNumericChange();
|
||||
}
|
||||
|
||||
private void ColorPanel_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (MessageColorDialog.ShowDialog() == DialogResult.OK)
|
||||
SetColorBox();
|
||||
}
|
||||
|
||||
private void AlertColorPanel_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
if (AlertColorDialog.ShowDialog() == DialogResult.OK)
|
||||
SetColorBox();
|
||||
}
|
||||
|
||||
private void LInputColorPanel_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
if (LInputColorDialog.ShowDialog() == DialogResult.OK)
|
||||
SetColorBox();
|
||||
}
|
||||
|
||||
private void MovieInputColor_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
if (MovieInputColorDialog.ShowDialog() == DialogResult.OK)
|
||||
SetColorBox();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue