Title: [110758] branches/safari-534.55-branch/Source/WebKit2
Revision
110758
Author
[email protected]
Date
2012-03-14 14:43:09 -0700 (Wed, 14 Mar 2012)

Log Message

Merged r107307.

Modified Paths

Diff

Modified: branches/safari-534.55-branch/Source/WebKit2/ChangeLog (110757 => 110758)


--- branches/safari-534.55-branch/Source/WebKit2/ChangeLog	2012-03-14 21:42:28 UTC (rev 110757)
+++ branches/safari-534.55-branch/Source/WebKit2/ChangeLog	2012-03-14 21:43:09 UTC (rev 110758)
@@ -1,5 +1,21 @@
 2012-03-14  Lucas Forschler  <[email protected]>
 
+    Merge 107307
+
+    2012-02-09  Matthew Delaney  <[email protected]>
+
+            HiDPI: WebKit2's drag images are blurry
+            https://bugs.webkit.org/show_bug.cgi?id=67779
+
+            Use the proper deviceScaleFactor() instead of accessing _intrinsicDeviceScaleFactor
+
+            Reviewed by Beth Dakin.
+
+            * UIProcess/API/mac/WKView.mm:
+            (-[WKView _setDragImage:at:linkDrag:]):
+
+2012-03-14  Lucas Forschler  <[email protected]>
+
     Merge 107267
 
     2012-02-09  Matthew Delaney  <[email protected]>

Modified: branches/safari-534.55-branch/Source/WebKit2/UIProcess/API/mac/WKView.mm (110757 => 110758)


--- branches/safari-534.55-branch/Source/WebKit2/UIProcess/API/mac/WKView.mm	2012-03-14 21:42:28 UTC (rev 110757)
+++ branches/safari-534.55-branch/Source/WebKit2/UIProcess/API/mac/WKView.mm	2012-03-14 21:43:09 UTC (rev 110758)
@@ -2402,7 +2402,7 @@
     
     _data->_dragHasStarted = YES;
     IntSize size([image size]);
-    size.scale(1.0 / [self _intrinsicDeviceScaleFactor]);
+    size.scale(1.0 / _data->_page->deviceScaleFactor());
     [image setSize:size];
     
     // The call to super could release this WKView.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to