Copilot: Fix connection

Change-Id: I8d32e5bdfd90968ac7c578f647ea7ae0325dbc9b
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Marcus Tillmanns
2023-10-12 08:29:59 +02:00
parent eda0dbd8dd
commit b1b83c5c5e

View File

@@ -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();
}