>>>>> "R" == R Lahaye <[EMAIL PROTECTED]> writes:
R> Hi, When I add in default.ui toolbar-Items as follows:
R> Icon "math-mode" Icon "math-insert ^" Icon "math-insert _"
R> LyX will look for the following filenames as icon-images:
R> math-mode.xpm symbol-insert_^.xpm symbol-insert__.xpm
R> Why does LyX change the last two in "symbol-..." ? Why is this not
R> "math-insert_^.xpm" and "math-insert__.xpm" ?
That's because function LFUN_MATHINSERT has two entries:
{ LFUN_INSERT_MATH, "math-insert", N_("Insert math symbol"), Noop },
{ LFUN_INSERT_MATH, "symbol-insert", "", Noop },
This is clearly not a good idea. I'll remove the second one (unless
someone gives me a good reason to keep it) and fix the bind files
accordingly.
JMarc