From: Juergen Spitzmueller Date: Mon, 12 Nov 2012 06:49:52 +0000 (+0100) Subject: Do not let the children's buffer params leak into the master (#5941) X-Git-Tag: 2.0.6~243 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=975b20d5b703087a3db4a9e90602a4f068310bc5;p=features.git Do not let the children's buffer params leak into the master (#5941) --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 9a1642396e..ac4f018ac0 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -1857,7 +1857,11 @@ int Buffer::runChktex() void Buffer::validate(LaTeXFeatures & features) const { - params().validate(features); + // Validate the buffer params, but not for included + // files, since they also use the parent buffer's + // params (# 5941) + if (!features.runparams().is_child) + params().validate(features); updateMacros(); diff --git a/src/insets/InsetInclude.cpp b/src/insets/InsetInclude.cpp index d161fadf50..049039a5cb 100644 --- a/src/insets/InsetInclude.cpp +++ b/src/insets/InsetInclude.cpp @@ -919,7 +919,9 @@ void InsetInclude::validate(LaTeXFeatures & features) const // otherwise it would always be the master buffer, // and nested includes would not work. features.setBuffer(*tmp); + features.runparams().is_child = true; tmp->validate(features); + features.runparams().is_child = false; features.setBuffer(buffer()); } } diff --git a/status.20x b/status.20x index 9993101c84..8b720ff0fb 100644 --- a/status.20x +++ b/status.20x @@ -54,12 +54,15 @@ What's new * DOCUMENT INPUT/OUTPUT +- Do not let child document's settings override master settings + (bug #5941). + * USER INTERFACE - Fix regression in which clicking in the main work area always resets - the selected format in View>Source (bug #8411). + the selected format in View > Source (bug #8411). - When selecting text and Insert > Preview, immediately display the preview (bug #8075).