Fix copy pasting multi-line text into a single-line textbox

This commit is contained in:
Wojtek Figat
2022-05-04 20:16:29 +02:00
parent ae63508049
commit 7bb5ffc2a4

View File

@@ -619,6 +619,8 @@ namespace FlaxEngine.GUI
// Filter text
if (str.IndexOf('\r') != -1)
str = str.Replace("\r", "");
if (!IsMultiline && str.IndexOf('\n') != -1)
str = str.Replace("\n", "");
int selectionLength = SelectionLength;
int charactersLeft = MaxLength - _text.Length + selectionLength;