From kde-commits Sun Oct 19 22:31:45 2008 From: Germain Garand Date: Sun, 19 Oct 2008 22:31:45 +0000 To: kde-commits Subject: branches/KDE/4.1/kdelibs/khtml Message-Id: <1224455505.286977.6504.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122445551707259 SVN commit 873674 by ggarand: automatically merged revision 869763: disabling smooth scroll just for the parsing phase, and not for the entire !complete phase, should be fine. M +1 -1 khtmlview.cpp --- branches/KDE/4.1/kdelibs/khtml/khtmlview.cpp #873673:873674 @@ -3899,7 +3899,7 @@ unscheduleRelayout(); layout(); } - if (d->smoothScrollMode == KHTMLView::SSMWhenEfficient) + if (d->smoothScrollMode == KHTMLView::SSMWhenEfficient && m_part->xmlDocImpl()->parsing()) d->shouldSmoothScroll = false; }