Input Widget - Do "Ctrl+X" not "Ctrl + X"

This commit is contained in:
andres.delikat 2011-07-06 23:15:58 +00:00
parent a0dddc1e5a
commit ec2969cc73
1 changed files with 3 additions and 3 deletions

View File

@ -224,11 +224,11 @@ namespace BizHawk.MultiClient
str = "LeftBracket";
if ((modifiers & Keys.Shift) != 0)
str = str.Insert(0, "Shift + ");
str = str.Insert(0, "Shift+");
if ((modifiers & Keys.Control) != 0)
str = str.Insert(0, "Ctrl + ");
str = str.Insert(0, "Ctrl+");
if ((modifiers & Keys.Alt) != 0)
str = str.Insert(0, "Alt + ");
str = str.Insert(0, "Alt+");
return str;
}