diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llfloaterexperienceprofile.cpp | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp index 4d60d01922..fd226d656c 100644 --- a/indra/newview/llfloaterexperienceprofile.cpp +++ b/indra/newview/llfloaterexperienceprofile.cpp @@ -337,7 +337,13 @@ BOOL LLFloaterExperienceProfile::postBuild()      LLEventPumps::instance().obtain("experience_permission").listen(mExperienceId.asString()+"-profile",           boost::bind(&LLFloaterExperienceProfile::experiencePermission, getDerivedHandle<LLFloaterExperienceProfile>(this), _1)); -     + +    if (mPostEdit && mExperienceId.notNull()) +    { +        mPostEdit = false; +        changeToEdit(); +    } +      return TRUE;  } @@ -621,12 +627,6 @@ void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience )      mDirty=false;      mForceClose = false;      getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty); - -    if (mPostEdit) -    { -        mPostEdit = false; -        changeToEdit(); -    }  }  void LLFloaterExperienceProfile::setPreferences( const LLSD& content ) | 
