Include omitted case, and fix underline.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32759 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-01-03 17:46:02 +00:00
parent 61d9aa28e0
commit a8dc000901

View File

@ -184,13 +184,15 @@ namespace {
t["overbrace"] = Attributes(true, "⏞");
t["overleftarrow"] = Attributes(true, "⟵");
t["overleftrightarrow"] = Attributes(true, "⟷");
t["overline"] = Attributes(false, "¯");
t["overrightarrow"] = Attributes(true, "⟶");
t["tilde"] = Attributes(true, "˜");
t["underbar"] = Attributes(false, "_");
t["underbrace"] = Attributes(false, "⏟");
t["underleftarrow"] = Attributes(false, "⟵");
t["underleftrightarrow"] = Attributes(false, "⟷");
t["underline"] = Attributes(false, "&;");
// this is the macron, again, but it works
t["underline"] = Attributes(false, "¯");
t["underrightarrow"] = Attributes(false, "⟶");
t["vec"] = Attributes(true, "→");
t["widehat"] = Attributes(true, "^");