electron/patches/common/chromium/scroll_bounce_flag.patch

24 lines
785 B
Diff
Raw Normal View History

2018-09-21 00:30:26 +00:00
From cc50dccf546c8bd730fb42e912e0cd231c9b1f84 Mon Sep 17 00:00:00 2001
From: Cheng Zhao <zcbenz@gmail.com>
Date: Thu, 20 Sep 2018 17:49:03 -0700
Subject: scroll_bounce_flag.patch
Patch to make scrollBounce option work.
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
2018-09-21 00:30:26 +00:00
index c078565cef71..5c31ab7654d0 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
2018-09-21 00:30:26 +00:00
@@ -1610,7 +1610,7 @@ bool RenderThreadImpl::IsGpuMemoryBufferCompositorResourcesEnabled() {
}
bool RenderThreadImpl::IsElasticOverscrollEnabled() {
- return is_elastic_overscroll_enabled_;
+ return base::CommandLine::ForCurrentProcess()->HasSwitch("scroll-bounce");
}
2018-09-21 00:30:26 +00:00
bool RenderThreadImpl::IsUseZoomForDSFEnabled() {
--
2.17.0