()
| 2227 | |
| 2228 | /// {@inheritDoc} |
| 2229 | @Override |
| 2230 | protected int getGridPosY() { |
| 2231 | int gridSize = getElementSize(false, true).getHeight() + itemGap; |
| 2232 | int scroll = getScrollY(); |
| 2233 | return calcGrid(scroll, gridSize); |
| 2234 | } |
| 2235 | |
| 2236 | private int calcGrid(int scroll, int gridSize) { |
| 2237 | int fraction = scroll % gridSize; |