From 85863cf4ed3986483ce2bc329903d91c8853e3d4 Mon Sep 17 00:00:00 2001 From: David Capello Date: Mon, 6 Oct 2025 12:10:16 -0300 Subject: [PATCH] We cannot bypass onSetText() as ui::Entry requires this Without this fix, "Run Command" will crash. --- src/ui/widget.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/widget.cpp b/src/ui/widget.cpp index 1d83c72a8..837af5308 100644 --- a/src/ui/widget.cpp +++ b/src/ui/widget.cpp @@ -148,9 +148,6 @@ double Widget::textDouble() const void Widget::setText(const std::string& text) { - if (text == this->text()) - return; - setTextQuiet(text); onSetText(); }