mirror of https://github.com/stella-emu/stella.git
Removed WIP experimental code that causes a crash with Ctrl-c/v.
This commit is contained in:
parent
eacfb41584
commit
409fa49aae
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue