From 5bd5028690e40ca4542e75e232d75bf4737a43d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 12 Apr 2002 16:29:59 +0000 Subject: [PATCH] fix redraw problem git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3991 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/formulamacro.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/formulamacro.C b/src/mathed/formulamacro.C index 1ba228702a..1329f24a69 100644 --- a/src/mathed/formulamacro.C +++ b/src/mathed/formulamacro.C @@ -189,7 +189,7 @@ void InsetFormulaMacro::draw(BufferView * bv, LyXFont const & f, pain.text(x + 2, y, prefix(), font); // formula - par()->draw(pain, xx + lyxfont::width(prefix(), f) + 5, yo_); + par()->draw(pain, xx + lyxfont::width(prefix(), f) + 5, y); xx += w + 2; xo_ = x; yo_ = y;