From 5d7a2df75848f7e418aa0766e1457081eb21ba74 Mon Sep 17 00:00:00 2001 From: wmayer Date: Tue, 8 Dec 2020 13:17:16 +0100 Subject: [PATCH] App: [skip ci] by default disable transactions on recompute --- src/Gui/CommandDoc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/CommandDoc.cpp b/src/Gui/CommandDoc.cpp index 225a26177f..bba8d391e9 100644 --- a/src/Gui/CommandDoc.cpp +++ b/src/Gui/CommandDoc.cpp @@ -1307,7 +1307,7 @@ StdCmdRefresh::StdCmdRefresh() // undoing the last transaction the manual recompute will clear the redo stack. ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath( "User parameter:BaseApp/Preferences/Document"); - bool create = hGrp->GetBool("TransactionOnRecompute", true); + bool create = hGrp->GetBool("TransactionOnRecompute", false); if (!create) eType = eType | NoTransaction; }