Fix xforms math panel (bug 1214)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@9392 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2004-12-17 10:31:39 +00:00
parent 383f1f180c
commit 99f174102c
3 changed files with 11 additions and 9 deletions

View File

@ -1,3 +1,8 @@
2004-12-16 Jürgen Spitzmüller <j.spitzmueller@gmx.de>
* FormMathsBitmap.C: Do not split strings with blank into two
separate dispatches (bug 1214)
2004-12-15 Angus Leeming <leeming@lyx.org> 2004-12-15 Angus Leeming <leeming@lyx.org>
* FormFiledialog.C (Reread): no longer use FileInfo::getNumberOfLinks(). * FormFiledialog.C (Reread): no longer use FileInfo::getNumberOfLinks().

View File

@ -176,12 +176,6 @@ int FormMathsBitmap::GetIndex(FL_OBJECT * ob_in)
void FormMathsBitmap::apply() void FormMathsBitmap::apply()
{ {
string::size_type const i = latex_chosen_.find(' ');
if (i != string::npos) {
controller().dispatchFunc(LFUN_MATH_MODE);
controller().insertSymbol(latex_chosen_.substr(0,i));
controller().insertSymbol(latex_chosen_.substr(i + 1), false);
} else
controller().insertSymbol(latex_chosen_); controller().insertSymbol(latex_chosen_);
} }

View File

@ -38,6 +38,9 @@ What's new
- Fix LaTeX output of percentage length values <10% [bug 1523]. - Fix LaTeX output of percentage length values <10% [bug 1523].
- Fix output of mathbb and mathcal symbols via the math panel
(xforms only) [bug 1214].
- Fix output of footnotes on the titlepage, which did not work with - Fix output of footnotes on the titlepage, which did not work with
the memoir class [bug 1677]. the memoir class [bug 1677].