Linux: Fixed double-paste issue in script window
This commit is contained in:
parent
48dcfa6de7
commit
19e2c0d2c7
1 changed files with 4 additions and 4 deletions
|
@ -27,11 +27,11 @@ namespace FastColoredTextBoxNS
|
|||
this[KEYS.Control | KEYS.Alt | KEYS.F] = FCTBAction.FindChar;
|
||||
this[KEYS.F3] = FCTBAction.FindNext;
|
||||
this[KEYS.Control | KEYS.H] = FCTBAction.ReplaceDialog;
|
||||
this[KEYS.Control | KEYS.C] = FCTBAction.Copy;
|
||||
//this[KEYS.Control | KEYS.C] = FCTBAction.Copy;
|
||||
this[KEYS.Control | KEYS.Shift | KEYS.C] = FCTBAction.CommentSelected;
|
||||
this[KEYS.Control | KEYS.X] = FCTBAction.Cut;
|
||||
this[KEYS.Control | KEYS.V] = FCTBAction.Paste;
|
||||
this[KEYS.Control | KEYS.A] = FCTBAction.SelectAll;
|
||||
//this[KEYS.Control | KEYS.X] = FCTBAction.Cut;
|
||||
//this[KEYS.Control | KEYS.V] = FCTBAction.Paste;
|
||||
//this[KEYS.Control | KEYS.A] = FCTBAction.SelectAll;
|
||||
this[KEYS.Control | KEYS.Z] = FCTBAction.Undo;
|
||||
this[KEYS.Control | KEYS.Y] = FCTBAction.Redo;
|
||||
this[KEYS.Control | KEYS.U] = FCTBAction.UpperCase;
|
||||
|
|
Loading…
Add table
Reference in a new issue