Linux: Fixed double-paste issue in script window

This commit is contained in:
Sour 2018-06-21 17:58:43 -04:00
parent 48dcfa6de7
commit 19e2c0d2c7

View file

@ -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;