From 94b5f7232f6655ab7a37c2a4de5f3b49036c964e Mon Sep 17 00:00:00 2001 From: rom9 <4711834+rom9@users.noreply.github.com> Date: Tue, 27 Jul 2021 21:18:08 +0200 Subject: [PATCH] Ignored ParamsEdited information when doing a partial profile save. The user-selected params will get saved, overriding any ParamsEdited filtering. Fixes #6303 --- rtgui/profilepanel.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtgui/profilepanel.cc b/rtgui/profilepanel.cc index 05e5bbab1..eb1b5d021 100644 --- a/rtgui/profilepanel.cc +++ b/rtgui/profilepanel.cc @@ -359,7 +359,7 @@ void ProfilePanel::save_clicked (GdkEventButton* event) if (isPartial) { // Build partial profile PartialProfile ppTemp(true); - partialProfileDlg->applyPaste(ppTemp.pparams, ppTemp.pedited, toSave->pparams, toSave->pedited); + partialProfileDlg->applyPaste(ppTemp.pparams, ppTemp.pedited, toSave->pparams, nullptr); // Save partial profile retCode = ppTemp.pparams->save(fname, "", true, ppTemp.pedited); // Cleanup