From b9a512361d781a19ae5dde30a658e6b1f8772483 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 19 Sep 2015 21:32:17 +0200 Subject: [PATCH] + by default create a zip file for auto-save --- src/Gui/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/Application.cpp b/src/Gui/Application.cpp index 38f35ff81..e2a36d431 100644 --- a/src/Gui/Application.cpp +++ b/src/Gui/Application.cpp @@ -1702,7 +1702,7 @@ void Application::runApplication(void) if (!hDocGrp->GetBool("AutoSaveEnabled", true)) timeout = 0; AutoSaver::instance()->setTimeout(timeout * 60000); - AutoSaver::instance()->setCompressed(hDocGrp->GetBool("AutoSaveCompressed", false)); + AutoSaver::instance()->setCompressed(hDocGrp->GetBool("AutoSaveCompressed", true)); // set toolbar icon size ParameterGrp::handle hGrp = WindowParameter::getDefaultParameter()->GetGroup("General");