Skip to content

Commit

Permalink
FeathersControl: Fixed issue where super.visible was never set to fal…
Browse files Browse the repository at this point in the history
…se after hide effect (closes #1803)
  • Loading branch information
joshtynjala committed Feb 20, 2020
1 parent b776242 commit 5188657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/feathers/core/FeathersControl.as
Original file line number Diff line number Diff line change
Expand Up @@ -3701,7 +3701,7 @@ package feathers.core
if(!stopped)
{
this.suspendEffects();
this.visible = this._pendingVisible;
super.visible = this._pendingVisible;
this.resumeEffects();
}
}
Expand Down

0 comments on commit 5188657

Please sign in to comment.