mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-02 17:06:49 +00:00
Fade out the taskbar icons when animating to overview in 3 button nav.
Bug: 231213105 Test: from home, opened recents, then went back home, then went back to recents, resumed an app, then went back to recents and resumed the same app (both in 3-button and gesture nav) Change-Id: I83b1b33cafb95353f36a126b93fcaf3b536d3bf4
This commit is contained in:
@@ -559,13 +559,11 @@ public class TaskbarDragController extends DragController<BaseTaskbarContext> im
|
||||
public void dumpLogs(String prefix, PrintWriter pw) {
|
||||
pw.println(prefix + "TaskbarDragController:");
|
||||
|
||||
pw.println(String.format("%s\tmDragIconSize=%dpx", prefix, mDragIconSize));
|
||||
pw.println(String.format("%s\tmTempXY=%s", prefix, Arrays.toString(mTempXY)));
|
||||
pw.println(String.format("%s\tmRegistrationX=%d", prefix, mRegistrationX));
|
||||
pw.println(String.format("%s\tmRegistrationY=%d", prefix, mRegistrationY));
|
||||
pw.println(String.format(
|
||||
"%s\tmIsSystemDragInProgress=%b", prefix, mIsSystemDragInProgress));
|
||||
pw.println(String.format(
|
||||
"%s\tisInternalDragInProgess=%b", prefix, super.isDragging()));
|
||||
pw.println(prefix + "\tmDragIconSize=" + mDragIconSize);
|
||||
pw.println(prefix + "\tmTempXY=" + Arrays.toString(mTempXY));
|
||||
pw.println(prefix + "\tmRegistrationX=" + mRegistrationX);
|
||||
pw.println(prefix + "\tmRegistrationY=" + mRegistrationY);
|
||||
pw.println(prefix + "\tmIsSystemDragInProgress=" + mIsSystemDragInProgress);
|
||||
pw.println(prefix + "\tisInternalDragInProgess=" + super.isDragging());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user