While trying to fix bug 3420 I noticed that LyX 1.5 comes with a new delimiter dialog. This dialog
is less clear to keep the overview about the different delimiters. The dialog of LyX 1.4.x is better
and quicker to handle as you just need to click on the delimiter you want than scrolling down two
comboboxes as in LyX 1.5's dialog.
What was the reason for this change? I would like to have LyX 1.4.x's dialog also in LyX 1.5. Does
anybody agree with me in this case?
---
The problem of bug 3420 is that the items for the empty delimiter is added by
this code
leftCO->addItem(QIcon(QPixmap(toqstr(empty_xpm))), qt_("(None)"));
instead of
leftCO->addItem(QIcon(QPixmap(toqstr(empty_xpm))), qt_("(None)"),
"empty");
But doing this doesn't help as this code is nwever called:
if (str == "empty")
return ".";
Has anybody an idea why the value is not recognized?
regards Uwe