am 5b39b5c3: Merge "Fix phonetic names not being saved for Exchange contacts" into ics-mr1
* commit '5b39b5c38445e0b806e5dc63a2a2a5365bf339f6':
Fix phonetic names not being saved for Exchange contacts
diff --git a/src/com/android/contacts/editor/PhoneticNameEditorView.java b/src/com/android/contacts/editor/PhoneticNameEditorView.java
index 59545d4..5e47d89 100644
--- a/src/com/android/contacts/editor/PhoneticNameEditorView.java
+++ b/src/com/android/contacts/editor/PhoneticNameEditorView.java
@@ -202,6 +202,11 @@
// phonetic name.
super.onFieldChanged(column, value);
}
+ } else {
+ // All fields are always visible, so we don't have to worry about blocking updates
+ // from onRestoreInstanceState() from hidden fields. Always call into the superclass
+ // to update the field and rebuild the underlying phonetic name.
+ super.onFieldChanged(column, value);
}
}