Input Widget - Do "Ctrl+X" not "Ctrl + X"
This commit is contained in:
parent
a0dddc1e5a
commit
ec2969cc73
|
@ -224,11 +224,11 @@ namespace BizHawk.MultiClient
|
||||||
str = "LeftBracket";
|
str = "LeftBracket";
|
||||||
|
|
||||||
if ((modifiers & Keys.Shift) != 0)
|
if ((modifiers & Keys.Shift) != 0)
|
||||||
str = str.Insert(0, "Shift + ");
|
str = str.Insert(0, "Shift+");
|
||||||
if ((modifiers & Keys.Control) != 0)
|
if ((modifiers & Keys.Control) != 0)
|
||||||
str = str.Insert(0, "Ctrl + ");
|
str = str.Insert(0, "Ctrl+");
|
||||||
if ((modifiers & Keys.Alt) != 0)
|
if ((modifiers & Keys.Alt) != 0)
|
||||||
str = str.Insert(0, "Alt + ");
|
str = str.Insert(0, "Alt+");
|
||||||
|
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue