Title: [115748] branches/subpixellayout/Source/WebKit/efl/ewk/ewk_view.cpp
Revision
115748
Author
[email protected]
Date
2012-05-01 14:21:53 -0700 (Tue, 01 May 2012)

Log Message

Correct misuse of LayoutUnits for scroll coordinates (we only scroll in full-pixels).

Modified Paths

Diff

Modified: branches/subpixellayout/Source/WebKit/efl/ewk/ewk_view.cpp (115747 => 115748)


--- branches/subpixellayout/Source/WebKit/efl/ewk/ewk_view.cpp	2012-05-01 20:50:00 UTC (rev 115747)
+++ branches/subpixellayout/Source/WebKit/efl/ewk/ewk_view.cpp	2012-05-01 21:21:53 UTC (rev 115748)
@@ -1677,7 +1677,7 @@
     if (currentScaleFactor == -1)
         return false;
 
-    priv->page->setPageScaleFactor(scaleFactor, WebCore::LayoutPoint(scrollX, scrollY));
+    priv->page->setPageScaleFactor(scaleFactor, WebCore::IntPoint(scrollX, scrollY));
     return true;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to