Config dialogs - OSD message when cancelling

This commit is contained in:
adelikat 2012-09-27 00:14:51 +00:00
parent be89bd1f3e
commit ff86d6d5db
6 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,7 @@ namespace BizHawk.MultiClient
private void Cancel_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Autofire config aborted");
this.Close();
}
}

View File

@ -115,6 +115,7 @@ namespace BizHawk.MultiClient.tools
}
private void button2_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Hotkey config aborted");
this.Close();
}

View File

@ -494,6 +494,7 @@ namespace BizHawk.MultiClient
private void Cancel_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Controller config aborted");
this.Close();
}

View File

@ -290,6 +290,7 @@ namespace BizHawk.MultiClient
private void Cancel_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Message config aborted");
this.Close();
}

View File

@ -248,6 +248,7 @@ namespace BizHawk.MultiClient
private void Cancel_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Path config aborted");
this.Close();
}

View File

@ -39,6 +39,7 @@ namespace BizHawk.MultiClient
private void Cancel_Click(object sender, EventArgs e)
{
Global.OSD.AddMessage("Sound config aborted");
this.Close();
}