summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Zaporozhan <dzaporozhan@productengine.com>2009-11-09 13:55:55 +0200
committerDmitry Zaporozhan <dzaporozhan@productengine.com>2009-11-09 13:55:55 +0200
commitf2f57797482bb22c6aa857f7af6f65510573ffff (patch)
treec634e6ce174627be261584955547e67706218d75
parentecb35d25ef68c21fd46220c60931103a44edebaa (diff)
Fixed low bug EXT-2319 - Unable to save new Pick.
--HG-- branch : product-engine
-rw-r--r--indra/newview/llpanelpick.cpp3
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()