Fixed<Shift><Space> bug B2016-008
This commit is contained in:
parent
841f8fff63
commit
9a7d508f81
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user