Loading packages/SystemUI/src/com/android/systemui/qs/PagedTileLayout.java +2 −1 Original line number Diff line number Diff line Loading @@ -114,7 +114,8 @@ public class PagedTileLayout extends ViewPager implements QSTileLayout { @Override public int getTilesHeight() { TileLayout tileLayout = mPages.get(getCurrentItem()); // Use the first page as that is the maximum height we need to show. TileLayout tileLayout = mPages.get(0); if (tileLayout == null) { return 0; } Loading Loading
packages/SystemUI/src/com/android/systemui/qs/PagedTileLayout.java +2 −1 Original line number Diff line number Diff line Loading @@ -114,7 +114,8 @@ public class PagedTileLayout extends ViewPager implements QSTileLayout { @Override public int getTilesHeight() { TileLayout tileLayout = mPages.get(getCurrentItem()); // Use the first page as that is the maximum height we need to show. TileLayout tileLayout = mPages.get(0); if (tileLayout == null) { return 0; } Loading