mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-13 17:20:55 +00:00
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:
parent
383f1f180c
commit
99f174102c
@ -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().
|
||||||
|
@ -176,13 +176,7 @@ int FormMathsBitmap::GetIndex(FL_OBJECT * ob_in)
|
|||||||
|
|
||||||
void FormMathsBitmap::apply()
|
void FormMathsBitmap::apply()
|
||||||
{
|
{
|
||||||
string::size_type const i = latex_chosen_.find(' ');
|
controller().insertSymbol(latex_chosen_);
|
||||||
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_);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,9 +38,12 @@ 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 footnotes on the titlepage, which did not work with
|
- Fix output of mathbb and mathcal symbols via the math panel
|
||||||
the memoir class [bug 1677].
|
(xforms only) [bug 1214].
|
||||||
|
|
||||||
|
- Fix output of footnotes on the titlepage, which did not work with
|
||||||
|
the memoir class [bug 1677].
|
||||||
|
|
||||||
- Fix the LaTeX output of Short Titles (aka optional inset) that did
|
- Fix the LaTeX output of Short Titles (aka optional inset) that did
|
||||||
not get \protect added when needed [bug 1739].
|
not get \protect added when needed [bug 1739].
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user