summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/widget
diff options
context:
space:
mode:
authorWinson Chung <winsonc@google.com>2015-05-11 16:30:13 -0700
committerWinson Chung <winsonc@google.com>2015-05-11 17:53:47 -0700
commit13eb527b5ae7f564e3ace6137a8d466636d87188 (patch)
treea74b3aaaed2dee277e1efea6461fbc9414fbcb41 /src/com/android/launcher3/widget
parent57ebefb5891255a23472473d5ec90b5247a334fc (diff)
downloadandroid_packages_apps_Trebuchet-13eb527b5ae7f564e3ace6137a8d466636d87188.tar.gz
android_packages_apps_Trebuchet-13eb527b5ae7f564e3ace6137a8d466636d87188.tar.bz2
android_packages_apps_Trebuchet-13eb527b5ae7f564e3ace6137a8d466636d87188.zip
Exploring dense all apps layout.
- Disabling section headers in all apps on tablet layouts - Fixing issue with predictions not showing on rotation - Fixing issue with over-aggressive dismissing of keyboard & filtered app state - Fixing issue where the container bounds were running straight up to the nav bar Change-Id: I5a5a56afa75b50be96af4894bf785ffbb1b15fb3
Diffstat (limited to 'src/com/android/launcher3/widget')
-rw-r--r--src/com/android/launcher3/widget/WidgetsContainerView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/launcher3/widget/WidgetsContainerView.java b/src/com/android/launcher3/widget/WidgetsContainerView.java
index 439227f52..f8d7d9256 100644
--- a/src/com/android/launcher3/widget/WidgetsContainerView.java
+++ b/src/com/android/launcher3/widget/WidgetsContainerView.java
@@ -373,7 +373,7 @@ public class WidgetsContainerView extends BaseContainerView
} else {
// If there are fixed bounds, then we update the padding to reflect the fixed bounds.
setPadding(mFixedBounds.left, mFixedBounds.top, getMeasuredWidth() - mFixedBounds.right,
- mInsets.bottom);
+ mFixedBounds.bottom);
}
}