From ec2969cc735bc8a556ef661ffced09157e49938f Mon Sep 17 00:00:00 2001 From: "andres.delikat" Date: Wed, 6 Jul 2011 23:15:58 +0000 Subject: [PATCH] Input Widget - Do "Ctrl+X" not "Ctrl + X" --- BizHawk.MultiClient/config/InputWidget.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/BizHawk.MultiClient/config/InputWidget.cs b/BizHawk.MultiClient/config/InputWidget.cs index 2ba4c13b0c..9b89cddf7f 100644 --- a/BizHawk.MultiClient/config/InputWidget.cs +++ b/BizHawk.MultiClient/config/InputWidget.cs @@ -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; }