| Index: Source/platform/DragImage.cpp
|
| diff --git a/Source/platform/DragImage.cpp b/Source/platform/DragImage.cpp
|
| index c075a9221b75b0e142b684005e1ee1f640b6ecfe..af4e666fac2dd640049adb41bf03b4068182afa1 100644
|
| --- a/Source/platform/DragImage.cpp
|
| +++ b/Source/platform/DragImage.cpp
|
| @@ -165,7 +165,7 @@ PassOwnPtr<DragImage> DragImage::create(const KURL& url, const String& inLabel,
|
| OwnPtr<ImageBuffer> buffer(ImageBuffer::create(scaledImageSize));
|
| if (!buffer)
|
| return nullptr;
|
| - buffer->context()->scale(FloatSize(deviceScaleFactor, deviceScaleFactor));
|
| + buffer->context()->scale(deviceScaleFactor, deviceScaleFactor);
|
|
|
| const float DragLabelRadius = 5;
|
| const IntSize radii(DragLabelRadius, DragLabelRadius);
|
|
|