fix whiteboard toolbar show hide animation so it interrupts

This commit is contained in:
Chad Pilkey 2017-04-24 17:57:37 -04:00
parent c97aed4057
commit d1b1ffe675

View File

@ -280,6 +280,9 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
private function showToolbar():void {
_hideToolbarTimer.reset();
if (fadeOut.isPlaying) {
fadeOut.end();
}
showWhiteboardToolbar = true;
}
@ -289,6 +292,9 @@ with BigBlueButton; if not, see <http://www.gnu.org/licenses/>.
}
private function onHideToolbarTimerComplete(event:TimerEvent):void {
if (fadeIn.isPlaying) {
fadeIn.end();
}
showWhiteboardToolbar = false;
}