Fix recursive repaint problem.

Backporting r39535. See also:
- http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg170468.html.
- Bug #7503
- Bug #7173


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39604 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Tommaso Cucinotta 2011-09-05 22:27:39 +00:00
parent 74f0c22cbb
commit df5709208a

View File

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