mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-02-19 10:48:19 +00:00
Code sanitization
- Removed bad method/class name typos Change-Id: Ie6900e9e3d9ce9b550d2a2442a5dac3f7050a573
This commit is contained in:
@@ -1082,7 +1082,7 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
|
||||
canvas.translate(display.left, display.top);
|
||||
canvas.rotate(270);
|
||||
|
||||
getEdgeVerticalPostion(sTmpIntPoint);
|
||||
getEdgeVerticalPosition(sTmpIntPoint);
|
||||
canvas.translate(display.top - sTmpIntPoint[1], 0);
|
||||
mEdgeGlowLeft.setSize(sTmpIntPoint[1] - sTmpIntPoint[0], display.width());
|
||||
if (mEdgeGlowLeft.draw(canvas)) {
|
||||
@@ -1096,7 +1096,7 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
|
||||
canvas.translate(display.left + mPageScrolls[mIsRtl ? 0 : (getPageCount() - 1)], display.top);
|
||||
canvas.rotate(90);
|
||||
|
||||
getEdgeVerticalPostion(sTmpIntPoint);
|
||||
getEdgeVerticalPosition(sTmpIntPoint);
|
||||
|
||||
canvas.translate(sTmpIntPoint[0] - display.top, -display.width());
|
||||
mEdgeGlowRight.setSize(sTmpIntPoint[1] - sTmpIntPoint[0], display.width());
|
||||
@@ -1111,7 +1111,7 @@ public abstract class PagedView extends ViewGroup implements ViewGroup.OnHierarc
|
||||
/**
|
||||
* Returns the top and bottom position for the edge effect.
|
||||
*/
|
||||
protected abstract void getEdgeVerticalPostion(int[] pos);
|
||||
protected abstract void getEdgeVerticalPosition(int[] pos);
|
||||
|
||||
@Override
|
||||
public boolean requestChildRectangleOnScreen(View child, Rect rectangle, boolean immediate) {
|
||||
|
||||
Reference in New Issue
Block a user