* GuiSymbols.cpp:

- disable "display all" checkbox for utf8.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22867 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2008-02-08 17:13:06 +00:00
parent 369f14fa8e
commit 9cb6ce57da

View File

@ -187,6 +187,10 @@ void GuiSymbols::updateView()
return;
if (!new_encoding.empty())
encoding_ = new_encoding;
bool const utf8 = toqstr(encoding_).startsWith("utf8");
if (utf8)
categoryFilterCB->setChecked(false);
categoryFilterCB->setEnabled(!utf8);
updateSymbolList();
}