We cannot bypass onSetText() as ui::Entry requires this

Without this fix, "Run Command" will crash.
This commit is contained in:
David Capello 2025-10-06 12:10:16 -03:00
parent f3d36ca4c4
commit 85863cf4ed
1 changed files with 0 additions and 3 deletions

View File

@ -148,9 +148,6 @@ double Widget::textDouble() const
void Widget::setText(const std::string& text)
{
if (text == this->text())
return;
setTextQuiet(text);
onSetText();
}