commit | 912b37e45c88e9b15cc4b940c47cfb28e2d0dc1b | [log] [tgz] |
---|---|---|
author | Schneider Victor-tulias <victortulias@google.com> | Thu Oct 12 14:31:25 2023 -0400 |
committer | Schneider Victor-tulias <victortulias@google.com> | Thu Oct 12 14:31:25 2023 -0400 |
tree | b40b4f57d6e444e1e83839a350d9c891d29f28d4 | |
parent | 5bec1164b90dd3846fc0da8db89d2a9f1a0db0d7 [diff] |
Increase the ActiveGestureLog tracked gesture limit Many bugs are coming in where the logs only start shortly after the bug repro. Increasing the limit to capture these logs more reliably. Flag: not needed Bug: 303424896 Test: printed gesture logs Change-Id: I9d02108c7d0def3c0280a2ca6d84aa3c3773b1a7
diff --git a/quickstep/src/com/android/quickstep/util/ActiveGestureLog.java b/quickstep/src/com/android/quickstep/util/ActiveGestureLog.java index 7103e63..1ead986 100644 --- a/quickstep/src/com/android/quickstep/util/ActiveGestureLog.java +++ b/quickstep/src/com/android/quickstep/util/ActiveGestureLog.java
@@ -31,7 +31,7 @@ */ public class ActiveGestureLog { - private static final int MAX_GESTURES_TRACKED = 10; + private static final int MAX_GESTURES_TRACKED = 15; public static final ActiveGestureLog INSTANCE = new ActiveGestureLog();