mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 18:58:19 +00:00
Fix NPE / add downX,Y location for all swipes/ add extra debugging info
Bug: 122700646 Bug: 127840207 Change-Id: I5862c8950565df172a933114e1fb2f9c4575593e
This commit is contained in:
@@ -42,13 +42,13 @@ public class UserEventDispatcherExtension extends UserEventDispatcher {
|
||||
|
||||
public UserEventDispatcherExtension(Context context) { }
|
||||
|
||||
public void logStateChangeAction(int action, int dir, int srcChildTargetType,
|
||||
int srcParentContainerType, int dstContainerType,
|
||||
int pageIndex) {
|
||||
public void logStateChangeAction(int action, int dir, int downX, int downY,
|
||||
int srcChildTargetType, int srcParentContainerType,
|
||||
int dstContainerType, int pageIndex) {
|
||||
new MetricsLoggerCompat().visibility(MetricsLoggerCompat.OVERVIEW_ACTIVITY,
|
||||
dstContainerType == LauncherLogProto.ContainerType.TASKSWITCHER);
|
||||
super.logStateChangeAction(action, dir, srcChildTargetType, srcParentContainerType,
|
||||
dstContainerType, pageIndex);
|
||||
super.logStateChangeAction(action, dir, downX, downY, srcChildTargetType,
|
||||
srcParentContainerType, dstContainerType, pageIndex);
|
||||
}
|
||||
|
||||
public void logActionTip(int actionType, int viewType) {
|
||||
|
||||
Reference in New Issue
Block a user