Removed WIP experimental code that causes a crash with Ctrl-c/v.

This commit is contained in:
Stephen Anthony 2018-08-26 09:12:46 -02:30
parent eacfb41584
commit 409fa49aae
1 changed files with 2 additions and 2 deletions

View File

@ -454,13 +454,13 @@ bool EditableWidget::moveWord(int direction)
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void EditableWidget::copySelectedText() void EditableWidget::copySelectedText()
{ {
_clippedText = _editString; // _clippedText = _editString;
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void EditableWidget::pasteSelectedText() void EditableWidget::pasteSelectedText()
{ {
_editString = _clippedText; // _editString = _clippedText;
} }
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - // - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -