diff options
author | Andrew Dyukov <adyukov@productengine.com> | 2009-12-02 14:44:39 +0200 |
---|---|---|
committer | Andrew Dyukov <adyukov@productengine.com> | 2009-12-02 14:44:39 +0200 |
commit | 52ce4b922947579337226d7932bcd6ffb931da82 (patch) | |
tree | 7abdd17a2379c1c0a9e9244ae8fb6698646b8555 /indra | |
parent | 9b656c31ee64e99fc6c7049d36ce1971f2af3903 (diff) |
Fixed normal bug EXT-1625 (Me > Pick Info > Edit Pick does not enable "Save" button when
image, location is changed). Implemented workaround:enabling save button each time when picker
is opened, even if texture wasn't changed (see Steve's comment).
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llpanelpick.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llpanelpick.cpp b/indra/newview/llpanelpick.cpp index da0c8d5020..541361324a 100644 --- a/indra/newview/llpanelpick.cpp +++ b/indra/newview/llpanelpick.cpp @@ -558,6 +558,11 @@ void LLPanelPickEdit::initTexturePickerMouseEvents() text_icon = getChild<LLIconCtrl>(XML_BTN_ON_TXTR); mSnapshotCtrl->setMouseEnterCallback(boost::bind(&LLPanelPickEdit::onTexturePickerMouseEnter, this, _1)); mSnapshotCtrl->setMouseLeaveCallback(boost::bind(&LLPanelPickEdit::onTexturePickerMouseLeave, this, _1)); + + // *WORKAROUND: Needed for EXT-1625: enabling save button each time when picker is opened, even if + // texture wasn't changed (see Steve's comment). + mSnapshotCtrl->setMouseDownCallback(boost::bind(&LLPanelPickEdit::enableSaveButton, this, true)); + text_icon->setVisible(FALSE); } |