Fix another recursive repaint problem with Qt4.4 when erasing a section text with backspace while the Outline is opened.

This should in principle not affect drawing but X11 testing with autorepeat key is required.





git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25234 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2008-06-12 15:25:17 +00:00
parent 1494e0a687
commit f8110b8b60

View File

@ -897,7 +897,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);
}