Fix recursive repaint problem.

See also: http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg170468.html


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@39535 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Tommaso Cucinotta 2011-08-27 10:21:59 +00:00
parent 9657ffd77f
commit 1bc43396fe

View File

@ -1086,7 +1086,7 @@ void GuiWorkArea::resizeEvent(QResizeEvent * ev)
void GuiWorkArea::update(int x, int y, int w, int h)
{
viewport()->repaint(x, y, w, h);
viewport()->update(x, y, w, h);
}