OSDN Git Service

Fix 5033850 (again), slight variant this time
authorAdam Cohen <adamcohen@google.com>
Tue, 2 Aug 2011 21:45:34 +0000 (14:45 -0700)
committerAdam Cohen <adamcohen@google.com>
Tue, 2 Aug 2011 21:47:04 +0000 (14:47 -0700)
Change-Id: I9b9fe1bb114a66c99a4819607a482d1b776a6269

src/com/android/launcher2/Folder.java

index 45730e0..641e0f7 100644 (file)
@@ -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) {