From: Richard Kimberly Heck Date: Fri, 28 Sep 2018 01:56:29 +0000 (-0400) Subject: Allow 'module in child not used in master' warning to be disabled. X-Git-Tag: lyx-2.4.0dev-acb2ca7b~3025 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=92ccf0a1a20e73a1ecf8d335ad2a2ef90ec9a89b;p=features.git Allow 'module in child not used in master' warning to be disabled. --- diff --git a/src/insets/InsetInclude.cpp b/src/insets/InsetInclude.cpp index 2d91f62bd2..8d1a4a87c5 100644 --- a/src/insets/InsetInclude.cpp +++ b/src/insets/InsetInclude.cpp @@ -769,7 +769,7 @@ void InsetInclude::latex(otexstream & os, OutputParams const & runparams) const "uses module `%2$s'\n" "which is not used in parent file."), included_file.displayName(), from_utf8(module)); - Alert::warning(_("Module not found"), text); + Alert::warning(_("Module not found"), text, true); } } }