From 551f5ec5f3d92d3ca0a8fec4681b54a851594726 Mon Sep 17 00:00:00 2001 From: Adam Reichold Date: Sat, 19 Dec 2015 17:49:25 +0100 Subject: [PATCH] Block bookmark changes when updating processing parameters in the history panels, so that snapshots will not wander to the other images. --- rtgui/history.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rtgui/history.cc b/rtgui/history.cc index e5b1faab1..625918917 100644 --- a/rtgui/history.cc +++ b/rtgui/history.cc @@ -230,6 +230,7 @@ void History::procParamsChanged (ProcParams* params, ProcEvent ev, Glib::ustring } selchangehist.block (true); + selchangebm.block (true); if (ev == EvPhotoLoaded) { initHistory (); @@ -303,6 +304,7 @@ void History::procParamsChanged (ProcParams* params, ProcEvent ev, Glib::ustring } selchangehist.block (false); + selchangebm.block (false); } void History::addBookmarkWithText (Glib::ustring text)