For some reason the SetColorDialog(); was erased in last commit, added back and working as intended now.

This commit is contained in:
pasky1382 2012-09-16 20:28:56 +00:00
parent 52bf8bf025
commit 099fea5c8e
1 changed files with 12 additions and 8 deletions

View File

@ -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();
}
}
}