summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/com/android/launcher2/Folder.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/launcher2/Folder.java b/src/com/android/launcher2/Folder.java
index 45730e018..641e0f70f 100644
--- a/src/com/android/launcher2/Folder.java
+++ b/src/com/android/launcher2/Folder.java
@@ -243,12 +243,14 @@ public class Folder extends LinearLayout implements DragSource, View.OnClickList
public void doneEditingFolderName(boolean commit) {
mFolderName.setHint(sHintText);
- mInfo.setTitle(mFolderName.getText());
LauncherModel.updateItemInDatabase(mLauncher, mInfo);
mFolderName.setCursorVisible(false);
mFolderName.clearFocus();
Selection.setSelection((Spannable) mFolderName.getText(), 0, 0);
mIsEditingName = false;
+ // Convert to a string here to ensure that no other state associated with the text field
+ // gets saved.
+ mInfo.setTitle(mFolderName.getText().toString());
}
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {