Fix bug 1796

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9771 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Martin Vermeer 2005-04-03 07:48:20 +00:00
parent 3a9e688b73
commit d6981c3b30
2 changed files with 7 additions and 1 deletions

View File

@ -1,4 +1,9 @@
2005-04-02 Martin Vermeer <martin.vermeer@hut.fi> 2005-04-03 Martin Vermeer <martin.vermeer@hut.fi>
* math_fontinset.[Ch] (draw): add call to setPosCache,
fixes bug 1796
2005-04-01 Martin Vermeer <martin.vermeer@hut.fi>
* math_data.C (x2pos): fix math cursor positioning bug * math_data.C (x2pos): fix math cursor positioning bug

View File

@ -56,6 +56,7 @@ void MathFontInset::draw(PainterInfo & pi, int x, int y) const
FontSetChanger dummy(pi.base, key_->name.c_str()); FontSetChanger dummy(pi.base, key_->name.c_str());
cell(0).draw(pi, x + 1, y); cell(0).draw(pi, x + 1, y);
drawMarkers(pi, x, y); drawMarkers(pi, x, y);
setPosCache(pi, x, y);
} }