Trigger a rendering pass when the settings change

This commit is contained in:
luisangelsm
2026-03-06 17:19:02 +01:00
parent de676a0fcb
commit 3f6235fe32
5 changed files with 19 additions and 1 deletions

View File

@ -148,7 +148,7 @@ void MainWindowViewer::setupUI()
connect(optionsDialog, &QDialog::accepted, viewer, &Viewer::updateOptions);
connect(optionsDialog, &YACReaderOptionsDialog::optionsChanged, this, &MainWindowViewer::reloadOptions);
connect(optionsDialog, &OptionsDialog::changedFilters, viewer, &Viewer::updateFilters);
connect(optionsDialog, &OptionsDialog::changedImageOptions, viewer, &Viewer::updatePage);
connect(optionsDialog, &OptionsDialog::changedImageOptions, viewer, &Viewer::onImageOptionsChanged);
optionsDialog->restoreOptions(settings);
// shortcutsDialog = new ShortcutsDialog(this);