summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3
diff options
context:
space:
mode:
authorHayden Schoen <hayden@cyngn.com>2015-04-27 14:07:12 -0700
committerRaj Yengisetty <rajesh@cyngn.com>2015-05-06 15:26:54 -0700
commiteaec663a1e540a6458f493f67334e9213419ed69 (patch)
tree9032a9e99011706d1ca42a45767e34f2034f16ae /src/com/android/launcher3
parentbf48aeb505d5e8747e32611cc0338031f55a217f (diff)
downloadandroid_packages_apps_Trebuchet-eaec663a1e540a6458f493f67334e9213419ed69.tar.gz
android_packages_apps_Trebuchet-eaec663a1e540a6458f493f67334e9213419ed69.tar.bz2
android_packages_apps_Trebuchet-eaec663a1e540a6458f493f67334e9213419ed69.zip
Trebuchet: Adjusted margin and vertical alignment of row title
Change-Id: Ic3e0837ac2726e4437bc5df68a3b1cb033d2d78f
Diffstat (limited to 'src/com/android/launcher3')
-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 20beb0664..81c489e45 100644
--- a/src/com/android/launcher3/AppDrawerListAdapter.java
+++ b/src/com/android/launcher3/AppDrawerListAdapter.java
@@ -636,7 +636,7 @@ public class AppDrawerListAdapter extends RecyclerView.Adapter<AppDrawerListAdap
if (params instanceof ViewGroup.MarginLayoutParams) {
ViewGroup.MarginLayoutParams marginParams = (ViewGroup.MarginLayoutParams) params;
marginParams.setMargins(marginParams.leftMargin, marginParams.topMargin,
- marginParams.rightMargin, mDeviceProfile.iconTextSizePx);
+ marginParams.rightMargin, marginParams.bottomMargin);
holder.mTextView.setLayoutParams(marginParams);
}