Merge "Log config change in EdgeBackGestureHandler" into tm-qpr-dev

This commit is contained in:
Shan Huang
2022-09-20 19:03:26 +00:00
committed by Android (Google) Code Review

View File

@@ -955,9 +955,9 @@ public class EdgeBackGestureHandler extends CurrentUserTracker
updateDisabledForQuickstep(newConfig); updateDisabledForQuickstep(newConfig);
} }
if (DEBUG_MISSING_GESTURE) { // TODO(b/243765256): Disable this logging once b/243765256 is fixed.
Log.d(DEBUG_MISSING_GESTURE_TAG, "Config changed: config=" + newConfig); Log.d(DEBUG_MISSING_GESTURE_TAG, "Config changed: newConfig=" + newConfig
} + " lastReportedConfig=" + mLastReportedConfig);
mLastReportedConfig.updateFrom(newConfig); mLastReportedConfig.updateFrom(newConfig);
updateDisplaySize(); updateDisplaySize();
} }