You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Start making a venue edit proposition on any venue
2. Turn device sideways
What is the expected output? What do you see instead?
Expected: Form labels do not change.
Instead: Form title and submit button text change to Add venue mode.
When new StateHolder is created, labels are set correctly. However, when
Stateholder is retained, this is not done. Simple fix:
if (retained != null && retained instanceof StateHolder) {
mStateHolder = (StateHolder) retained;
...
if (mStateHolder.getVenueBeingEdited() != null)
setLabelsToEditMode();
Original issue reported on code.google.com by [email protected] on 6 Aug 2010 at 11:46
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 6 Aug 2010 at 11:46The text was updated successfully, but these errors were encountered: