keytips and shortcuts

shortcut for hard space
This commit is contained in:
2009-10-02 18:09:58 +00:00
parent 7b14ead888
commit 6cb48301cb
4 changed files with 24 additions and 18 deletions

View File

@@ -1143,6 +1143,10 @@ namespace Volian.Controls.Library
int newend = FindEndDown();
if (newend > 0) SetSelection(SelectionStart, newend - SelectionStart);
break;
case Keys.Space:
if (e.Control) // Hardspace - Ctrl+Shift+Space
InsertSymbol(@"\u160?");
break;
default:
break;
}