From: Tommaso Cucinotta Date: Mon, 5 Sep 2011 22:27:39 +0000 (+0000) Subject: Fix recursive repaint problem. X-Git-Tag: 2.0.2~238 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=df5709208a653b100960323b97962db5897bfa03;p=features.git 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 --- diff --git a/src/frontends/qt4/GuiWorkArea.cpp b/src/frontends/qt4/GuiWorkArea.cpp index 3975d3d51a..ccae8807f6 100644 --- a/src/frontends/qt4/GuiWorkArea.cpp +++ b/src/frontends/qt4/GuiWorkArea.cpp @@ -1085,7 +1085,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); }