Skip to content

Commit

Permalink
App: [skip ci] by default disable transactions on recompute
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Dec 8, 2020
1 parent 78c6cc1 commit daea303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Gui/CommandDoc.cpp
Expand Up @@ -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;
}
Expand Down

0 comments on commit daea303

Please sign in to comment.