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

mrobinson at webkit.org mrobinson at webkit.org
Wed Dec 22 18:43:38 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a2f8e0c204e57312fd60e7074683929a90a5da6b
Author: mrobinson at webkit.org <mrobinson at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 16 17:50:20 2010 +0000

    2010-12-16  Carlos Garcia Campos  <cgarcia at igalia.com>
    
            Reviewed by Martin Robinson.
    
            [Gtk] scrolling artifacts
            https://bugs.webkit.org/show_bug.cgi?id=45029
    
            Call gdk_window_process_updates() right after moving the window
            when scrolling.
    
            * WebCoreSupport/ChromeClientGtk.cpp:
            (WebKit::ChromeClient::scroll):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74196 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/gtk/ChangeLog b/WebKit/gtk/ChangeLog
index 57cf7df..2feef54 100644
--- a/WebKit/gtk/ChangeLog
+++ b/WebKit/gtk/ChangeLog
@@ -1,3 +1,16 @@
+2010-12-16  Carlos Garcia Campos  <cgarcia at igalia.com>
+
+        Reviewed by Martin Robinson.
+
+        [Gtk] scrolling artifacts
+        https://bugs.webkit.org/show_bug.cgi?id=45029
+
+        Call gdk_window_process_updates() right after moving the window
+        when scrolling.
+
+        * WebCoreSupport/ChromeClientGtk.cpp:
+        (WebKit::ChromeClient::scroll):
+
 2010-12-15  Sheriff Bot  <webkit.review.bot at gmail.com>
 
         Unreviewed, rolling out r74117.
diff --git a/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp b/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp
index 6d66e57..12f4f14 100644
--- a/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp
+++ b/WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp
@@ -418,6 +418,7 @@ void ChromeClient::scroll(const IntSize& delta, const IntRect& rectToScroll, con
     cairo_region_destroy(invalidRegion);
 #endif
 
+    gdk_window_process_updates(window, TRUE);
 }
 
 // FIXME: this does not take into account the WM decorations

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list