mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
Revert "Add debug logs for hotseat disapperaed bug"
This reverts commit 04658bcd42.
Reason for revert: root cause found
Bug: 260135164
Change-Id: I809662780d042923de015ff4cb810b3da5169f83
This commit is contained in:
committed by
Android (Google) Code Review
parent
04658bcd42
commit
f4269f01d7
@@ -160,7 +160,6 @@ import java.util.StringJoiner;
|
||||
|
||||
mIconAlignment.finishAnimation();
|
||||
|
||||
Log.d("b/260135164", "onDestroy - updateIconAlphaForHome(1)");
|
||||
mLauncher.getHotseat().setIconsAlpha(1f);
|
||||
mLauncher.getStateManager().removeStateListener(mStateListener);
|
||||
|
||||
@@ -405,8 +404,6 @@ import java.util.StringJoiner;
|
||||
public void onAnimationEnd(Animator animation) {
|
||||
if (isInStashedState && committed) {
|
||||
// Reset hotseat alpha to default
|
||||
Log.d("b/260135164",
|
||||
"playStateTransitionAnim#onAnimationEnd - setIconsAlpha(1)");
|
||||
mLauncher.getHotseat().setIconsAlpha(1);
|
||||
}
|
||||
}
|
||||
@@ -455,9 +452,6 @@ import java.util.StringJoiner;
|
||||
* Hide Launcher Hotseat icons when Taskbar icons have opacity. Both icon sets
|
||||
* should not be visible at the same time.
|
||||
*/
|
||||
Log.d("b/260135164",
|
||||
"updateIconAlphaForHome - setIconsAlpha(" + (hotseatVisible ? 1 : 0)
|
||||
+ "), isTaskbarPresent: " + mLauncher.getDeviceProfile().isTaskbarPresent);
|
||||
mLauncher.getHotseat().setIconsAlpha(hotseatVisible ? 1 : 0);
|
||||
mLauncher.getHotseat().setQsbAlpha(
|
||||
mLauncher.getDeviceProfile().isQsbInline && !hotseatVisible ? 0 : 1);
|
||||
|
||||
Reference in New Issue
Block a user