diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-01-10 01:43:36 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-01-10 01:43:36 +0200 |
commit | 390a5031dcdbc6bf191f49a105021c8a707a9949 (patch) | |
tree | 15f85c95d18cc79997badfb0395a7f73dc6ad5d0 /indra/newview/llpanelprofile.cpp | |
parent | 983a3c7207bcb233fb5a1cfdfbed8b9a3f992a73 (diff) |
SL-19555 Fix picker failing to highlight default material in inventory
Diffstat (limited to 'indra/newview/llpanelprofile.cpp')
-rw-r--r-- | indra/newview/llpanelprofile.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/llpanelprofile.cpp b/indra/newview/llpanelprofile.cpp index ffbed778c1..8114e05a94 100644 --- a/indra/newview/llpanelprofile.cpp +++ b/indra/newview/llpanelprofile.cpp @@ -1969,7 +1969,8 @@ void LLPanelProfileSecondLife::onShowTexturePicker() PERM_NONE, PERM_NONE, FALSE, - NULL); + NULL, + PICK_TEXTURE); mFloaterTexturePickerHandle = texture_floaterp->getHandle(); @@ -2304,7 +2305,8 @@ void LLPanelProfileFirstLife::onChangePhoto() PERM_NONE, PERM_NONE, FALSE, - NULL); + NULL, + PICK_TEXTURE); mFloaterTexturePickerHandle = texture_floaterp->getHandle(); |