We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4fc63 commit 758acb1Copy full SHA for 758acb1
src/RenderWebGL.js
@@ -1674,6 +1674,8 @@ class RenderWebGL extends EventEmitter {
1674
const id = candidateIDs[index];
1675
if (id !== drawableID) {
1676
const drawable = this._allDrawables[id];
1677
+ // Text bubbles aren't considered in "touching" queries
1678
+ if (drawable.skin instanceof TextBubbleSkin) continue;
1679
if (drawable.skin && drawable._visible) {
1680
// If private skin access is disabled, do not allow projects to use touching blocks to guess the
1681
// contents of a private skin.
0 commit comments