From ade48ccffef86a718e6a84ce4056e80f85433c46 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Fri, 18 Jul 2014 09:00:07 -0400 Subject: [PATCH] We have to be able to assign the command shortcut key... --- CSharp/Libraries/UniversalEditor.UserInterface/Command.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CSharp/Libraries/UniversalEditor.UserInterface/Command.cs b/CSharp/Libraries/UniversalEditor.UserInterface/Command.cs index 9a9a8eb4..1c4aaafb 100644 --- a/CSharp/Libraries/UniversalEditor.UserInterface/Command.cs +++ b/CSharp/Libraries/UniversalEditor.UserInterface/Command.cs @@ -45,7 +45,7 @@ namespace UniversalEditor.UserInterface public string DefaultCommandID { get { return mvarDefaultCommandID; } set { mvarDefaultCommandID = value; } } private CommandShortcutKey mvarShortcutKey = new CommandShortcutKey(); - public CommandShortcutKey ShortcutKey { get { return mvarShortcutKey; } } + public CommandShortcutKey ShortcutKey { get { return mvarShortcutKey; } set { mvarShortcutKey = value; } } private StockCommandType mvarStockCommandType = StockCommandType.None; ///