App: [skip ci] by default disable transactions on recompute

This commit is contained in:
wmayer
2020-12-08 13:17:16 +01:00
parent 78c6cc1362
commit daea30341e

View File

@@ -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;
}