Merge "Dump mIsSwipeToNotificationEnabled state" into sc-v2-dev am: 0826811ad3 am: cae77dedc3

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16092046

Change-Id: Ia9b6019bf30e4f9dfe90c64ea931af51d61cfe9d
This commit is contained in:
TreeHugger Robot 2021-10-25 14:18:44 +00:00 committed by Automerger Merge Worker
commit 22f575a036
2 changed files with 4 additions and 0 deletions

View File

@ -689,6 +689,8 @@ public class OneHandedController implements RemoteCallable<OneHandedController>,
pw.println(mUserId);
pw.print(innerPrefix + "isShortcutEnabled=");
pw.println(isShortcutEnabled());
pw.print(innerPrefix + "mIsSwipeToNotificationEnabled=");
pw.println(mIsSwipeToNotificationEnabled);
if (mBackgroundPanelOrganizer != null) {
mBackgroundPanelOrganizer.dump(pw);

View File

@ -244,6 +244,8 @@ public final class OneHandedSettingsUtil {
pw.println(TAG);
pw.print(innerPrefix + "isOneHandedModeEnable=");
pw.println(getSettingsOneHandedModeEnabled(resolver, userId));
pw.print(innerPrefix + "isSwipeToNotificationEnabled=");
pw.println(getSettingsSwipeToNotificationEnabled(resolver, userId));
pw.print(innerPrefix + "oneHandedTimeOut=");
pw.println(getSettingsOneHandedModeTimeout(resolver, userId));
pw.print(innerPrefix + "tapsAppToExit=");