mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-07-16 09:13:13 -04:00
Do not bother repositioning bubbles for invisible sprites
This commit is contained in:
parent
9782c137bb
commit
54d5be8bba
1 changed files with 1 additions and 0 deletions
|
@ -117,6 +117,7 @@ class Scratch3LooksBlocks {
|
|||
* @private
|
||||
*/
|
||||
_positionBubble (target) {
|
||||
if (!target.visible) return;
|
||||
const bubbleState = this._getBubbleState(target);
|
||||
const [bubbleWidth, bubbleHeight] = this.runtime.renderer.getCurrentSkinSize(bubbleState.drawableId);
|
||||
const targetBounds = target.getBoundsForBubble();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue