mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Windows/Linux: Fix scrolling in popup lists with high-dpi.
This commit is contained in:
15
patch/patches/webkit_widget_base_2444320.patch
Normal file
15
patch/patches/webkit_widget_base_2444320.patch
Normal file
@@ -0,0 +1,15 @@
|
||||
diff --git third_party/blink/renderer/platform/widget/widget_base.cc third_party/blink/renderer/platform/widget/widget_base.cc
|
||||
index 048460f4dd81..59a70580ded0 100644
|
||||
--- third_party/blink/renderer/platform/widget/widget_base.cc
|
||||
+++ third_party/blink/renderer/platform/widget/widget_base.cc
|
||||
@@ -1281,8 +1281,8 @@ gfx::Point WidgetBase::BlinkSpaceToFlooredDIPs(const gfx::Point& point) {
|
||||
return point;
|
||||
// TODO(danakj): Should this be GetScreenInfo() so it changes under emulation?
|
||||
// TODO(dtapuska): Determine if this should be a floor vs rounded.
|
||||
- return gfx::ScaleToFlooredPoint(
|
||||
- point, client_->GetOriginalScreenInfo().device_scale_factor);
|
||||
+ float reverse = 1 / client_->GetOriginalScreenInfo().device_scale_factor;
|
||||
+ return gfx::ScaleToFlooredPoint(point, reverse);
|
||||
}
|
||||
|
||||
gfx::Size WidgetBase::DIPsToCeiledBlinkSpace(const gfx::Size& size) {
|
Reference in New Issue
Block a user