diff options
author | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-09 13:55:55 +0200 |
---|---|---|
committer | Dmitry Zaporozhan <dzaporozhan@productengine.com> | 2009-11-09 13:55:55 +0200 |
commit | f2f57797482bb22c6aa857f7af6f65510573ffff (patch) | |
tree | c634e6ce174627be261584955547e67706218d75 | |
parent | ecb35d25ef68c21fd46220c60931103a44edebaa (diff) |
Fixed low bug EXT-2319 - Unable to save new Pick.
--HG--
branch : product-engine
-rw-r--r-- | indra/newview/llpanelpick.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llpanelpick.cpp b/indra/newview/llpanelpick.cpp index 103f041686..726c47b678 100644 --- a/indra/newview/llpanelpick.cpp +++ b/indra/newview/llpanelpick.cpp @@ -438,7 +438,8 @@ void LLPanelPickEdit::resetDirty() BOOL LLPanelPickEdit::isDirty() const { - if( LLPanelPickInfo::isDirty() + if( mNewPick + || LLPanelPickInfo::isDirty() || mLocationChanged || mSnapshotCtrl->isDirty() || getChild<LLLineEditor>("pick_name")->isDirty() |