Skip to content

Commit d663ba2

Browse files
committed
fix: forceNoGlow false on flyout blocks
For some reason, this wasn't getting respected anyway and flyout blocks were glowing anyway. Now that we're using block glow to track project run status, set forceNoGlow to false on the flyout blocks so that clicking one still counts as making the project run, like it did before the previous commit.
1 parent 8979eee commit d663ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/engine/runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class Runtime extends EventEmitter {
205205
* These will execute on `_editingTarget.`
206206
* @type {!Blocks}
207207
*/
208-
this.flyoutBlocks = new Blocks(this, true /* force no glow */);
208+
this.flyoutBlocks = new Blocks(this, false /* force no glow */);
209209

210210
/**
211211
* Storage container for monitor blocks.

0 commit comments

Comments
 (0)