From 4ea1870098085d0021331ca35572fb947b908cc1 Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Wed, 5 Oct 2022 16:04:42 -0700 Subject: [PATCH] exportdialog: fixed bug where format change signal didn't fire when loading preset --- app/dialog/export/export.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/dialog/export/export.cpp b/app/dialog/export/export.cpp index 6210b63f4..e714dfd41 100644 --- a/app/dialog/export/export.cpp +++ b/app/dialog/export/export.cpp @@ -697,6 +697,7 @@ EncodingParams ExportDialog::GenerateParams() const void ExportDialog::SetParams(const EncodingParams &e) { format_combobox_->SetFormat(e.format()); + FormatChanged(format_combobox_->GetFormat()); if (e.has_custom_range() && viewer_node_->GetWorkArea()->enabled()) { range_combobox_->setCurrentIndex(kRangeInToOut);