mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
* src/frontends/controllers/ControlMath.cpp (find_xpm):
- substitute characters ; : ! , by literal expressions (probably fix bug 3834), git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18884 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cc30726cc4
commit
54ed37eade
@ -504,6 +504,10 @@ string const find_xpm(string const & name)
|
||||
xpm_name = subst(xpm_name, "{", "lbrace");
|
||||
xpm_name = subst(xpm_name, "}", "rbrace");
|
||||
xpm_name = subst(xpm_name, "|", "bars");
|
||||
xpm_name = subst(xpm_name, ",", "thinspace");
|
||||
xpm_name = subst(xpm_name, ":", "mediumspace");
|
||||
xpm_name = subst(xpm_name, ";", "thickspace");
|
||||
xpm_name = subst(xpm_name, "!", "negthinspace");
|
||||
}
|
||||
|
||||
LYXERR(Debug::GUI) << "find_xpm(" << name << ")\n"
|
||||
|
Loading…
Reference in New Issue
Block a user