[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

andreas.kling at nokia.com andreas.kling at nokia.com
Wed Dec 22 15:37:36 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ba4eac0dccf4595667cd3868f2000d0853f41c82
Author: andreas.kling at nokia.com <andreas.kling at nokia.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Nov 9 16:09:01 2010 +0000

    2010-11-09  Andreas Kling  <kling at webkit.org>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            ScrollView::updateScrollbars() shouldn't do anything when scrolling is delegated.
    
            * platform/ScrollView.cpp:
            (WebCore::ScrollView::updateScrollbars):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@71635 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 56d8a7c..ed5f2e0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-11-09  Andreas Kling  <kling at webkit.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        ScrollView::updateScrollbars() shouldn't do anything when scrolling is delegated.
+
+        * platform/ScrollView.cpp:
+        (WebCore::ScrollView::updateScrollbars):
+
 2010-11-09  Steve Block  <steveblock at google.com>
 
         Reviewed by Andreas Kling.
diff --git a/WebCore/platform/ScrollView.cpp b/WebCore/platform/ScrollView.cpp
index 15ffc44..b1c9615 100644
--- a/WebCore/platform/ScrollView.cpp
+++ b/WebCore/platform/ScrollView.cpp
@@ -372,7 +372,7 @@ static const unsigned cMaxUpdateScrollbarsPass = 2;
 
 void ScrollView::updateScrollbars(const IntSize& desiredOffset)
 {
-    if (m_inUpdateScrollbars || prohibitsScrolling() || platformWidget())
+    if (m_inUpdateScrollbars || prohibitsScrolling() || delegatesScrolling() || platformWidget())
         return;
 
     // If we came in here with the view already needing a layout, then go ahead and do that

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list