mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-04-10 19:15:13 +00:00
Fixed an issue in TextEditComponent when clearing really long strings.
This commit is contained in:
parent
c63e5e4529
commit
796951bf44
|
@ -61,6 +61,7 @@ void TextEditComponent::setValue(const std::string& val)
|
||||||
mText = val;
|
mText = val;
|
||||||
mTextOrig = val;
|
mTextOrig = val;
|
||||||
onTextChanged();
|
onTextChanged();
|
||||||
|
onCursorChanged();
|
||||||
}
|
}
|
||||||
|
|
||||||
void TextEditComponent::textInput(const std::string& text)
|
void TextEditComponent::textInput(const std::string& text)
|
||||||
|
|
Loading…
Reference in a new issue