Hi Michael, On 11/18/2011 04:54 PM, Michael Meeks wrote: > Right, just changing that default would be easier. Tim - the best way > (or at least what I'd do) to find that is to cp -a your > ~/.config/libreoffice to somewhere else; change the setting, exit, then > diff -ur on the files, perhaps xmlint --format them, and diff -u again - > then hack the default setting in officecfg. > > Any chance you can tweak your patch to that ? sure, that should be it.
Tim -- SUSE LINUX Products GmbH, GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer, HRB 16746 (AG Nürnberg) Maxfeldstr. 5, 90409 Nürnberg, Germany T: +49 (0) 911 74053-0 F: +49 (0) 911 74053-483 http://www.suse.de/
From 7de6c6cd01cc34c62d03a7dcb2a1c9fa27befc1b Mon Sep 17 00:00:00 2001 From: Tim Hardeck <[email protected]> Date: Fri, 18 Nov 2011 15:20:10 +0100 Subject: [PATCH] Start Impress without the wizard by default This one-liner prevents the Impress Wizard from getting started automatically. The assistant should now only appear if File -> Wizards -> Presentation is used. --- .../schema/org/openoffice/Office/Impress.xcs | 2 +- sd/source/ui/app/optsitem.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs index 16634f5..2876a29 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Impress.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Impress.xcs @@ -588,7 +588,7 @@ <desc>Indicates whether to show the autopilot when creating a new presentation.</desc> <label>Start with AutoPilots</label> </info> - <value>true</value> + <value>false</value> </prop> <prop oor:name="Layout" oor:type="xs:boolean"> <!-- OldPath: Impress/Other/New_Doc --> diff --git a/sd/source/ui/app/optsitem.cxx b/sd/source/ui/app/optsitem.cxx index d5eec0a..666ea0d 100644 --- a/sd/source/ui/app/optsitem.cxx +++ b/sd/source/ui/app/optsitem.cxx @@ -488,7 +488,7 @@ SdOptionsMisc::SdOptionsMisc( sal_uInt16 nConfigId, sal_Bool bUseConfig ) : OUString() ), nDefaultObjectSizeWidth(8000), nDefaultObjectSizeHeight(5000), - bStartWithTemplate( sal_True ), + bStartWithTemplate( sal_False ), bMarkedHitMovesAlways( sal_True ), bMoveOnlyDragging( sal_False ), bCrookNoContortion( sal_False ), -- 1.7.3.4
signature.asc
Description: OpenPGP digital signature
_______________________________________________ LibreOffice mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice
