summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Jurka <mikejurka@google.com>2013-04-18 16:57:58 +0200
committerMichael Jurka <mikejurka@google.com>2013-04-18 16:57:58 +0200
commit74f053757701bcb897fb2ec11f8e2aa2d11491e6 (patch)
tree6439dc04af2abd2da8a00ce295d5e6d621d119cf /src
parent02d1863c595d14338045e806668ec60d7db45293 (diff)
downloadandroid_packages_apps_Trebuchet-74f053757701bcb897fb2ec11f8e2aa2d11491e6.tar.gz
android_packages_apps_Trebuchet-74f053757701bcb897fb2ec11f8e2aa2d11491e6.tar.bz2
android_packages_apps_Trebuchet-74f053757701bcb897fb2ec11f8e2aa2d11491e6.zip
Trim widget names
Bug: 8617506
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher2/AppsCustomizePagedView.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/android/launcher2/AppsCustomizePagedView.java b/src/com/android/launcher2/AppsCustomizePagedView.java
index a4a9ea9da..5601169b8 100644
--- a/src/com/android/launcher2/AppsCustomizePagedView.java
+++ b/src/com/android/launcher2/AppsCustomizePagedView.java
@@ -448,6 +448,7 @@ public class AppsCustomizePagedView extends PagedViewWithDraggableItems implemen
Intent shortcutsIntent = new Intent(Intent.ACTION_CREATE_SHORTCUT);
List<ResolveInfo> shortcuts = mPackageManager.queryIntentActivities(shortcutsIntent, 0);
for (AppWidgetProviderInfo widget : widgets) {
+ widget.label = widget.label.trim();
if (widget.minWidth > 0 && widget.minHeight > 0) {
// Ensure that all widgets we show can be added on a workspace of this size
int[] spanXY = Launcher.getSpanForWidget(mLauncher, widget);