From df5709208a653b100960323b97962db5897bfa03 Mon Sep 17 00:00:00 2001 From: Tommaso Cucinotta Date: Mon, 5 Sep 2011 22:27:39 +0000 Subject: [PATCH] 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 --- src/frontends/qt4/GuiWorkArea.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5