Merge pull request #88 from esensar/fix/icons-blink-on-page-change
Fix icons blinking on page change
This commit is contained in:
commit
c643f06b6d
|
@ -742,7 +742,7 @@ class HomeScreenGrid(context: Context, attrs: AttributeSet, defStyle: Int) : Rel
|
||||||
|
|
||||||
handleItemDrawing(item, 0f)
|
handleItemDrawing(item, 0f)
|
||||||
}
|
}
|
||||||
if (pageChangeAnimLeftPercentage > 0f && pageChangeAnimLeftPercentage < 1f) {
|
if (pageChangeAnimLeftPercentage > 0f) {
|
||||||
gridItems.filter { (it.drawable != null && it.type == ITEM_TYPE_ICON || it.type == ITEM_TYPE_SHORTCUT) && it.page == lastPage && !it.docked }
|
gridItems.filter { (it.drawable != null && it.type == ITEM_TYPE_ICON || it.type == ITEM_TYPE_SHORTCUT) && it.page == lastPage && !it.docked }
|
||||||
.forEach { item ->
|
.forEach { item ->
|
||||||
if (item.outOfBounds()) {
|
if (item.outOfBounds()) {
|
||||||
|
|
Loading…
Reference in New Issue