Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
2af19a91
Commit
2af19a91
authored
11 years ago
by
LanceCorrimal
Browse files
Options
Downloads
Patches
Plain Diff
Fixed: BUG-4413
parent
d8a81b24
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llappearancemgr.cpp
+13
-0
13 additions, 0 deletions
indra/newview/llappearancemgr.cpp
with
13 additions
and
0 deletions
indra/newview/llappearancemgr.cpp
+
13
−
0
View file @
2af19a91
...
@@ -1431,6 +1431,18 @@ void LLAppearanceMgr::takeOffOutfit(const LLUUID& cat_id)
...
@@ -1431,6 +1431,18 @@ void LLAppearanceMgr::takeOffOutfit(const LLUUID& cat_id)
uuids_to_remove
.
push_back
(
item
->
getUUID
());
uuids_to_remove
.
push_back
(
item
->
getUUID
());
}
}
removeItemsFromAvatar
(
uuids_to_remove
);
removeItemsFromAvatar
(
uuids_to_remove
);
// now deactivating all gestures in that folder
LLInventoryModel
::
item_array_t
gest_items
;
getDescendentsOfAssetType
(
cat_id
,
gest_items
,
LLAssetType
::
AT_GESTURE
,
false
);
for
(
S32
i
=
0
;
i
<
gest_items
.
count
();
++
i
)
{
LLViewerInventoryItem
*
gest_item
=
gest_items
.
get
(
i
);
if
(
LLGestureMgr
::
instance
().
isGestureActive
(
gest_item
->
getLinkedUUID
())
)
{
LLGestureMgr
::
instance
().
deactivateGesture
(
gest_item
->
getLinkedUUID
()
);
}
}
}
}
// Create a copy of src_id + contents as a subfolder of dst_id.
// Create a copy of src_id + contents as a subfolder of dst_id.
...
@@ -3414,6 +3426,7 @@ void LLAppearanceMgr::removeItemsFromAvatar(const uuid_vec_t& ids_to_remove)
...
@@ -3414,6 +3426,7 @@ void LLAppearanceMgr::removeItemsFromAvatar(const uuid_vec_t& ids_to_remove)
{
{
llwarns
<<
"called with empty list, nothing to do"
<<
llendl
;
llwarns
<<
"called with empty list, nothing to do"
<<
llendl
;
}
}
for
(
uuid_vec_t
::
const_iterator
it
=
ids_to_remove
.
begin
();
it
!=
ids_to_remove
.
end
();
++
it
)
for
(
uuid_vec_t
::
const_iterator
it
=
ids_to_remove
.
begin
();
it
!=
ids_to_remove
.
end
();
++
it
)
{
{
const
LLUUID
&
id_to_remove
=
*
it
;
const
LLUUID
&
id_to_remove
=
*
it
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment