diff options
| author | 2021-02-10 13:25:47 -0500 | |
|---|---|---|
| committer | 2021-02-10 13:25:47 -0500 | |
| commit | ffcdf0b95b256edae7a473fddd7fb458b6cdafee (patch) | |
| tree | b3a4f4eab5de00a5fc55ee7ea06a40d0af21030b | |
| parent | bf03ae3b78e69f6260f05033883d3911b33a4e8c (diff) | |
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
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java | 2 |
1 files changed, 1 insertions, 1 deletions
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 |