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: 2.3.2~72 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=07ae4942a858f192beff5d52b0264c1464cd9548;p=features.git Allow 'module in child not used in master' warning to be disabled. (cherry picked from commit 92ccf0a1a20e73a1ecf8d335ad2a2ef90ec9a89b) --- diff --git a/src/insets/InsetInclude.cpp b/src/insets/InsetInclude.cpp index 89f2533111..437e0ea309 100644 --- a/src/insets/InsetInclude.cpp +++ b/src/insets/InsetInclude.cpp @@ -762,7 +762,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); } } }