summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHayden Schoen <hayden@cyngn.com>2015-04-16 15:32:13 -0700
committerRajesh Yengisetty <rajesh@cyngn.com>2015-04-16 22:53:46 +0000
commit9d875db4c37f328546072ce1ea4eb540bf1c50e5 (patch)
treef3d9b718277a290023c11031b97887d8b6dba853
parent0ce1d70dffb2f19a8e2997f03556b46b44c57156 (diff)
downloadandroid_packages_apps_Trebuchet-9d875db4c37f328546072ce1ea4eb540bf1c50e5.tar.gz
android_packages_apps_Trebuchet-9d875db4c37f328546072ce1ea4eb540bf1c50e5.tar.bz2
android_packages_apps_Trebuchet-9d875db4c37f328546072ce1ea4eb540bf1c50e5.zip
Trebuchet: Finalized the pivot of the scaling letters
Change-Id: I6375753abf7fc01e099544e72d0687f6bdad0be7
-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);
}
};