diff options
| author | 2022-02-23 21:58:31 -0800 | |
|---|---|---|
| committer | 2022-02-23 21:58:31 -0800 | |
| commit | 99554e3cd7f1132c03007293df09cd8d07adb426 (patch) | |
| tree | e7ec6ce3f2bcf791ca522626e0067719e12d1f92 | |
| parent | bb8c65ed14e5d3e73d2c6cf2b1b9f4677ce61826 (diff) | |
Add flipper switch for shell transitions
Bug: 161711458
Test: flip switch
Change-Id: I0bb63b3402b938104bcb8cb6f23e72b3c1085777
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/flags/Flags.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.java b/packages/SystemUI/src/com/android/systemui/flags/Flags.java index 5487c42eda43..bf689e30d2fd 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.java +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.java @@ -153,6 +153,9 @@ public class Flags { public static final BooleanFlag SIMULATE_DOCK_THROUGH_CHARGING = new BooleanFlag(1000, true); + // 1100 - windowing + public static final SysPropBooleanFlag WM_ENABLE_SHELL_TRANSITIONS = + new SysPropBooleanFlag(1100, "persist.debug.shell_transit", false); // Pay no attention to the reflection behind the curtain. // ========================== Curtain ========================== |