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
bfb8eaab
Commit
bfb8eaab
authored
8 years ago
by
Mnikolenko Productengine
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-6800 FIXED Using Snapshot Freeze Frame option causes several issues
parent
30d5e0df
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/llviewermenufile.cpp
+4
-4
4 additions, 4 deletions
indra/newview/llviewermenufile.cpp
with
4 additions
and
4 deletions
indra/newview/llviewermenufile.cpp
+
4
−
4
View file @
bfb8eaab
...
...
@@ -508,8 +508,8 @@ class LLFileEnableCloseAllWindows : public view_listener_t
{
bool
handleEvent
(
const
LLSD
&
userdata
)
{
LLFloaterSnapshot
*
floater_snapshot
=
LLFloaterSnapshot
::
get
Instance
();
LLFloaterOutfitSnapshot
*
floater_outfit_snapshot
=
LLFloaterOutfitSnapshot
::
get
Instance
();
LLFloaterSnapshot
*
floater_snapshot
=
LLFloaterSnapshot
::
find
Instance
();
LLFloaterOutfitSnapshot
*
floater_outfit_snapshot
=
LLFloaterOutfitSnapshot
::
find
Instance
();
bool
is_floaters_snapshot_opened
=
(
floater_snapshot
&&
floater_snapshot
->
isInVisibleChain
())
||
(
floater_outfit_snapshot
&&
floater_outfit_snapshot
->
isInVisibleChain
());
bool
open_children
=
gFloaterView
->
allChildrenClosed
()
&&
!
is_floaters_snapshot_opened
;
...
...
@@ -523,10 +523,10 @@ class LLFileCloseAllWindows : public view_listener_t
{
bool
app_quitting
=
false
;
gFloaterView
->
closeAllChildren
(
app_quitting
);
LLFloaterSnapshot
*
floater_snapshot
=
LLFloaterSnapshot
::
get
Instance
();
LLFloaterSnapshot
*
floater_snapshot
=
LLFloaterSnapshot
::
find
Instance
();
if
(
floater_snapshot
)
floater_snapshot
->
closeFloater
(
app_quitting
);
LLFloaterOutfitSnapshot
*
floater_outfit_snapshot
=
LLFloaterOutfitSnapshot
::
get
Instance
();
LLFloaterOutfitSnapshot
*
floater_outfit_snapshot
=
LLFloaterOutfitSnapshot
::
find
Instance
();
if
(
floater_outfit_snapshot
)
floater_outfit_snapshot
->
closeFloater
(
app_quitting
);
if
(
gMenuHolder
)
gMenuHolder
->
hideMenus
();
...
...
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