Fix stack glows so that stacks glow as soon as the first block in the stack starts running as opposed to after the first block has finished. Make sure that monitored reporters in the flyout are not glowing.

This commit is contained in:
Karishma Chadha 2018-08-22 14:44:06 -04:00
parent 9242835be8
commit 62bf790d8f
3 changed files with 28 additions and 11 deletions
src/engine

View file

@ -127,14 +127,14 @@ class Runtime extends EventEmitter {
* These will execute on `_editingTarget.`
* @type {!Blocks}
*/
this.flyoutBlocks = new Blocks();
this.flyoutBlocks = new Blocks(true /* force no glow */);
/**
* Storage container for monitor blocks.
* These will execute on a target maybe
* @type {!Blocks}
*/
this.monitorBlocks = new Blocks();
this.monitorBlocks = new Blocks(true /* force no glow */);
/**
* Currently known editing target for the VM.