]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetInfo.cpp
Properly fix handling of title layouts within insets (#11787)
[lyx.git] / src / insets / InsetInfo.cpp
index db64a2d366a7366a207aff1e12d7bd3e59c6b549..0847106dc01e3025c0997f13d2f0f0fdac076543 100644 (file)
@@ -749,6 +749,14 @@ bool InsetInfo::forceLTR(OutputParams const &) const
 }
 
 
+bool InsetInfo::forceLocalFontSwitch() const
+{
+       return params_.type == InsetInfoParams::MENU_INFO
+               || params_.type == InsetInfoParams::SHORTCUTS_INFO
+               || params_.type == InsetInfoParams::L7N_INFO;
+}
+
+
 void InsetInfo::updateBuffer(ParIterator const & it, UpdateType utype, bool const deleted) {
        // If the Buffer is a clone, then we neither need nor want to do any
        // of what follows. We want, rather, just to inherit how things were
@@ -1037,14 +1045,6 @@ void InsetInfo::updateBuffer(ParIterator const & it, UpdateType utype, bool cons
                initialized_ = true;
                FuncRequest func = lyxaction.lookupFunc(params_.name);
                docstring icon_name = frontend::Application::iconName(func, true);
-               // FIXME: We should use the icon directly instead of
-               // going through FileName. The code below won't work
-               // if the icon is embedded in the executable through
-               // the Qt resource system.
-               // This is only a negligible performance problem:
-               // If the installed icon differs from the resource icon the
-               // installed one is preferred anyway, and all icons that are
-               // embedded in the resources are installed as well.
                FileName file(to_utf8(icon_name));
                if (file.onlyFileNameWithoutExt() == "unknown") {
                        string dir = "images";