commit | a508e4f804c2bddf9e2cdfa3d0bd4a8202ff2151 | [log] [tgz] |
---|---|---|
author | Sunny Goyal <sunnygoyal@google.com> | Thu May 21 09:33:57 2015 -0700 |
committer | Sunny Goyal <sunnygoyal@google.com> | Thu May 21 09:33:57 2015 -0700 |
tree | d2fa32b66aee601c46311ca0f98b5ac1fa0ddfb9 | |
parent | c393b0765df8d2d34b3b996b71700a705b7d0106 [diff] [blame] |
Do not trim folder title Bug: 21297281 Change-Id: I633780f8207aabc8362f016e6b5a6e720cee1b86
diff --git a/src/com/android/launcher3/FolderInfo.java b/src/com/android/launcher3/FolderInfo.java index 930f911..aea21c9 100644 --- a/src/com/android/launcher3/FolderInfo.java +++ b/src/com/android/launcher3/FolderInfo.java
@@ -92,7 +92,7 @@ } public void setTitle(CharSequence title) { - this.title = Utilities.trim(title); + this.title = title; for (int i = 0; i < listeners.size(); i++) { listeners.get(i).onTitleChanged(title); }