From ffcdf0b95b256edae7a473fddd7fb458b6cdafee Mon Sep 17 00:00:00 2001 From: Matt Casey Date: Wed, 10 Feb 2021 13:25:47 -0500 Subject: Enable long screenshots by default Keeping the flag lines there to make it easier for us to roll this back as needed. Bug: 148519342 Test: Clean flash phone, validate that long screenshot feature works. Change-Id: I051cd136189da06624e3ab5f9e1087488530299f --- .../src/com/android/systemui/screenshot/ScreenshotController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java b/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java index 953b40b6e17b..563b948694a6 100644 --- a/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java +++ b/packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java @@ -509,7 +509,7 @@ public class ScreenshotController { setWindowFocusable(true); if (mConfigProxy.getBoolean(DeviceConfig.NAMESPACE_SYSTEMUI, - SystemUiDeviceConfigFlags.SCREENSHOT_SCROLLING_ENABLED, false)) { + SystemUiDeviceConfigFlags.SCREENSHOT_SCROLLING_ENABLED, true)) { View decorView = mWindow.getDecorView(); // Wait until this window is attached to request because it is -- cgit v1.2.3-59-g8ed1b