From ef4c33fee4df479caf0d01523535649be6fb7cdd Mon Sep 17 00:00:00 2001 From: Syres916 <46537884+Syres916@users.noreply.github.com> Date: Wed, 21 May 2025 18:23:31 +0100 Subject: [PATCH] [Gui] InputField correct icon visibility logic on opening a pre-completed task panel --- src/Gui/InputField.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/InputField.cpp b/src/Gui/InputField.cpp index 04ed35f183..e203e0bc69 100644 --- a/src/Gui/InputField.cpp +++ b/src/Gui/InputField.cpp @@ -195,7 +195,7 @@ void InputField::resizeEvent(QResizeEvent * /*event*/) void InputField::updateIconLabel(const QString& text) { - iconLabel->setVisible(!text.isEmpty()); + iconLabel->setVisible(text.isEmpty()); } void InputField::contextMenuEvent(QContextMenuEvent *event)