Fixed<Shift><Space> bug B2016-008

This commit is contained in:
John Jenko 2016-02-29 15:21:36 +00:00
parent 841f8fff63
commit 9a7d508f81

View File

@ -1902,8 +1902,11 @@ namespace Volian.Controls.Library
if (newend > 0) SetSelection(SelectionStart, newend - SelectionStart);
break;
case Keys.Space:
if (e.Control && MyDVI!= null && UserInfo.CanEdit(MyUserInfo,MyDVI)); // Hardspace - Ctrl+Shift+Space
if (e.Control && MyDVI != null && UserInfo.CanEdit(MyUserInfo, MyDVI)) // Hardspace - Ctrl+Shift+Space
{
InsertSymbol(@"\u160?");
e.Handled = true;
}
break;
case Keys.F3: // shift F3
e.Handled = true;