Don't show citation engines in the list of modules. They are found under the bibliography settings.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40888 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Julien Rioux 2012-03-08 16:43:05 +00:00
parent 1a6e951b4f
commit d09f87c3ca

View File

@ -3647,7 +3647,8 @@ void GuiDocument::loadModuleInfo()
if (pos > 0)
desc.truncate(pos + 1);
m.description = desc;
moduleNames_.push_back(m);
if (it->category().substr(0, 8) != "Citation")
moduleNames_.push_back(m);
}
}