From 8fc853bcb3890abf69e286a4141673c038e02203 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Tue, 13 Jun 2023 02:35:04 +0300 Subject: [PATCH] knetattach: force emision of the toggled() signal for the create button Signed-off-by: Ivailo Monev --- knetattach/knetattach.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/knetattach/knetattach.cpp b/knetattach/knetattach.cpp index d2ead80c..89c1c891 100644 --- a/knetattach/knetattach.cpp +++ b/knetattach/knetattach.cpp @@ -76,6 +76,9 @@ KNetAttach::KNetAttach( QWidget* parent ) void KNetAttach::slotPageChanged(int) { + // force emision of the toggled() signal + _createIcon->setChecked(false); + // and the check state _createIcon->setChecked(true); }