From 048b06db9740e9817f23c66ed91754044a19b821 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sun, 3 Mar 2024 21:14:14 -0600 Subject: [PATCH] Fix Image Preview button to use the correct image settings --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9c83ef8..9a8fdbb 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -210,7 +210,7 @@ void MainWindow::setupViewControls(QVBoxLayout *rootLyt) { void MainWindow::openSettings() { SettingsDialog d(this); - connect(&d, &SettingsDialog::previewPreset, &m_cameraClient, &CameraClient::setPreset); + connect(&d, &SettingsDialog::previewPreset, &m_cameraClient, &CameraClient::setPresetVC); auto const result = d.exec(); if (result == QDialog::Accepted) { m_cameraClient.setBaseUrl();