From 5188657ebc3bf5f9059d5b7280a3c027d5016d7d Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Thu, 20 Feb 2020 07:42:11 -0800 Subject: [PATCH] FeathersControl: Fixed issue where super.visible was never set to false after hide effect (closes #1803) --- source/feathers/core/FeathersControl.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/feathers/core/FeathersControl.as b/source/feathers/core/FeathersControl.as index 933a66ceb2..a2b154c226 100644 --- a/source/feathers/core/FeathersControl.as +++ b/source/feathers/core/FeathersControl.as @@ -3701,7 +3701,7 @@ package feathers.core if(!stopped) { this.suspendEffects(); - this.visible = this._pendingVisible; + super.visible = this._pendingVisible; this.resumeEffects(); } }