From 07ae4942a858f192beff5d52b0264c1464cd9548 Mon Sep 17 00:00:00 2001 From: Richard Kimberly Heck Date: Thu, 27 Sep 2018 21:56:29 -0400 Subject: [PATCH] Allow 'module in child not used in master' warning to be disabled. (cherry picked from commit 92ccf0a1a20e73a1ecf8d335ad2a2ef90ec9a89b) --- src/insets/InsetInclude.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } } } -- 2.39.5