diff --git a/src/mathed/ChangeLog b/src/mathed/ChangeLog index 6fe71f8764..a48e87d78e 100644 --- a/src/mathed/ChangeLog +++ b/src/mathed/ChangeLog @@ -1,4 +1,9 @@ -2005-04-02 Martin Vermeer +2005-04-03 Martin Vermeer + + * math_fontinset.[Ch] (draw): add call to setPosCache, + fixes bug 1796 + +2005-04-01 Martin Vermeer * math_data.C (x2pos): fix math cursor positioning bug diff --git a/src/mathed/math_fontinset.C b/src/mathed/math_fontinset.C index 4a72b31102..14f4bc652c 100644 --- a/src/mathed/math_fontinset.C +++ b/src/mathed/math_fontinset.C @@ -56,6 +56,7 @@ void MathFontInset::draw(PainterInfo & pi, int x, int y) const FontSetChanger dummy(pi.base, key_->name.c_str()); cell(0).draw(pi, x + 1, y); drawMarkers(pi, x, y); + setPosCache(pi, x, y); }