mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-03 01:16:49 +00:00
DO NOT MERGE
Fixing animation glitch Bug #6015450 Change-Id: Iebbce7c07816b51b0fb98cd5b83ca2af2e5f76d4
This commit is contained in:
@@ -1724,7 +1724,7 @@ public class Workspace extends SmoothPagedView
|
||||
invalidate();
|
||||
for (int i = 0; i < getChildCount(); i++) {
|
||||
final CellLayout cl = (CellLayout) getChildAt(i);
|
||||
cl.fastInvalidate();
|
||||
cl.invalidate();
|
||||
cl.setFastTranslationX(a * mOldTranslationXs[i] + b * mNewTranslationXs[i]);
|
||||
cl.setFastTranslationY(a * mOldTranslationYs[i] + b * mNewTranslationYs[i]);
|
||||
cl.setFastScaleX(a * mOldScaleXs[i] + b * mNewScaleXs[i]);
|
||||
@@ -1734,6 +1734,7 @@ public class Workspace extends SmoothPagedView
|
||||
cl.setBackgroundAlphaMultiplier(a * mOldBackgroundAlphaMultipliers[i] +
|
||||
b * mNewBackgroundAlphaMultipliers[i]);
|
||||
cl.setFastAlpha(a * mOldAlphas[i] + b * mNewAlphas[i]);
|
||||
cl.invalidate();
|
||||
}
|
||||
syncChildrenLayersEnabledOnVisiblePages();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user