summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/launcher3/AppDrawerListAdapter.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/AppDrawerListAdapter.java b/src/com/android/launcher3/AppDrawerListAdapter.java
index 5bbc2ad03..21c1b28e9 100644
--- a/src/com/android/launcher3/AppDrawerListAdapter.java
+++ b/src/com/android/launcher3/AppDrawerListAdapter.java
@@ -163,7 +163,7 @@ public class AppDrawerListAdapter extends RecyclerView.Adapter<AppDrawerListAdap
public void onLayoutChange(View v, int left, int top, int right, int bottom,
int oldLeft, int oldTop, int oldRight, int oldBottom) {
// set the pivot of the text view
- v.setPivotX(v.getMeasuredWidth() / 4);
+ v.setPivotX(v.getMeasuredWidth() / 3);
v.setPivotY(v.getMeasuredHeight() / 2);
}
};