Skip to content

Commit

Permalink
Feathers-Extension-Tree
Browse files Browse the repository at this point in the history
  • Loading branch information
pol2095 committed Nov 21, 2016
1 parent 6c24361 commit d9255df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file modified Feathers-Extension-Tree/bin/Feathers-Extension-Tree.swc
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -248,12 +248,14 @@ package feathers.extensions.tree
{
if (touch.getTouch(this, TouchPhase.HOVER))
{
if(lineLeftHover.alpha == 0.5) return;
var color:uint = hoverLineColor;
lineLeftHover.color = lineRightHover.color = lineTopHover.color = lineBottomHover.color = color;
lineLeftHover.alpha = lineRightHover.alpha = lineTopHover.alpha = lineBottomHover.alpha = 0.5;
}
else
{
if(lineLeftHover.alpha == 0) return;
lineLeftHover.alpha = lineRightHover.alpha = lineTopHover.alpha = lineBottomHover.alpha = 0;
}
}
Expand Down

0 comments on commit d9255df

Please sign in to comment.