diff options
author | Nicholas Bottone <nick@bottone.io> | 2023-12-13 05:19:13 -0500 |
---|---|---|
committer | Nicholas Bottone <nick@bottone.io> | 2023-12-13 05:19:13 -0500 |
commit | a4811279e86928181efc24785c336ee92299369e (patch) | |
tree | 373414e4182a2861556ceee6d48914c2dd6d325a /src/mainwindow.cpp | |
parent | adc6d81d78b3ae24ae16c9d233864432ec09a4cb (diff) |
Fix settingsChanged signal emission in RayTracer::render()
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index cc54ed5..334d6ae 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -403,6 +403,7 @@ void MainWindow::onBulkRender() { QDir::currentPath()); std::cout << "Setting bulk output path to: \"" << folderPath.toStdString() << "\"." << std::endl; settings.bulkOutputFolderPath = folderPath.toStdString(); + rayTracer->settingsChanged(imageLabel); } void MainWindow::onValChangexySlider(int newValue) { |