diff --git a/src/gui/interface/Textbox.cpp b/src/gui/interface/Textbox.cpp index f96929663..9ab126ced 100644 --- a/src/gui/interface/Textbox.cpp +++ b/src/gui/interface/Textbox.cpp @@ -181,7 +181,7 @@ void Textbox::cutSelection() void Textbox::pasteIntoSelection() { - String newText = format::CleanString(ClipboardPull().FromUtf8(), true, true, inputType != Multiline, inputType == Number || inputType == Numeric); + String newText = format::CleanString(ClipboardPull().FromUtf8(), false, true, inputType != Multiline, inputType == Number || inputType == Numeric); if (HasSelection()) { if (getLowerSelectionBound() < 0 || getHigherSelectionBound() > (int)backingText.length())