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
b18d54be
Commit
b18d54be
authored
13 years ago
by
Leslie Linden
Browse files
Options
Downloads
Patches
Plain Diff
EXP-1816 FIX -- Drag area in outbox can remain highlighted after drag and drop ends
* Added handleHover function to clear highlight
parent
eee28bd0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llfloateroutbox.cpp
+10
-0
10 additions, 0 deletions
indra/newview/llfloateroutbox.cpp
indra/newview/llfloateroutbox.h
+1
-0
1 addition, 0 deletions
indra/newview/llfloateroutbox.h
with
11 additions
and
0 deletions
indra/newview/llfloateroutbox.cpp
+
10
−
0
View file @
b18d54be
...
@@ -419,6 +419,16 @@ BOOL LLFloaterOutbox::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
...
@@ -419,6 +419,16 @@ BOOL LLFloaterOutbox::handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
return
handled
;
return
handled
;
}
}
BOOL
LLFloaterOutbox
::
handleHover
(
S32
x
,
S32
y
,
MASK
mask
)
{
if
(
mOutboxTopLevelDropZone
)
{
mOutboxTopLevelDropZone
->
setBackgroundVisible
(
FALSE
);
}
return
LLFloater
::
handleHover
(
x
,
y
,
mask
);
}
void
LLFloaterOutbox
::
onMouseLeave
(
S32
x
,
S32
y
,
MASK
mask
)
void
LLFloaterOutbox
::
onMouseLeave
(
S32
x
,
S32
y
,
MASK
mask
)
{
{
if
(
mOutboxTopLevelDropZone
)
if
(
mOutboxTopLevelDropZone
)
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llfloateroutbox.h
+
1
−
0
View file @
b18d54be
...
@@ -66,6 +66,7 @@ class LLFloaterOutbox : public LLFloater
...
@@ -66,6 +66,7 @@ class LLFloaterOutbox : public LLFloater
void
showNotification
(
const
LLSD
&
notify
);
void
showNotification
(
const
LLSD
&
notify
);
BOOL
handleHover
(
S32
x
,
S32
y
,
MASK
mask
);
void
onMouseLeave
(
S32
x
,
S32
y
,
MASK
mask
);
void
onMouseLeave
(
S32
x
,
S32
y
,
MASK
mask
);
protected:
protected:
...
...
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