From c18d5faafb89db9ab020900a5e3fe0cf1b286fc9 Mon Sep 17 00:00:00 2001 From: Paul Kaplan Date: Tue, 15 May 2018 14:37:06 -0400 Subject: [PATCH] Make sure to set the bubble to blank when hiding --- src/blocks/scratch3_looks.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/blocks/scratch3_looks.js b/src/blocks/scratch3_looks.js index cef818f70..2bf328bbc 100644 --- a/src/blocks/scratch3_looks.js +++ b/src/blocks/scratch3_looks.js @@ -291,7 +291,7 @@ class Scratch3LooksBlocks { this._bubbleTimeout = null; // Clear say bubble if it hasn't been changed and proceed. if (this._getBubbleState(target).usageId === usageId) { - this._onTargetWillExit(target); + this._updateBubble(target, 'say', ''); } resolve(); }, 1000 * args.SECS); @@ -311,7 +311,7 @@ class Scratch3LooksBlocks { this._bubbleTimeout = null; // Clear think bubble if it hasn't been changed and proceed. if (this._getBubbleState(target).usageId === usageId) { - this._onTargetWillExit(target); + this._updateBubble(target, 'think', ''); } resolve(); }, 1000 * args.SECS);