From b1b83c5c5eabb59aea45971bab6fe23a0617a6ac Mon Sep 17 00:00:00 2001 From: Marcus Tillmanns Date: Thu, 12 Oct 2023 08:29:59 +0200 Subject: [PATCH] Copilot: Fix connection Change-Id: I8d32e5bdfd90968ac7c578f647ea7ae0325dbc9b Reviewed-by: Reviewed-by: Christian Stenger --- src/plugins/copilot/authwidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/copilot/authwidget.cpp b/src/plugins/copilot/authwidget.cpp index a0890cae3dc..ffafc8381b4 100644 --- a/src/plugins/copilot/authwidget.cpp +++ b/src/plugins/copilot/authwidget.cpp @@ -59,8 +59,8 @@ AuthWidget::AuthWidget(QWidget *parent) }); connect(&settings(), &CopilotSettings::applied, this, update); - connect(settings().nodeJsPath.pathChooser(), &PathChooser::textChanged, this, update); - connect(settings().distPath.pathChooser(), &PathChooser::textChanged, this, update); + connect(&settings().nodeJsPath, &FilePathAspect::volatileValueChanged, this, update); + connect(&settings().distPath, &FilePathAspect::volatileValueChanged, this, update); update(); }