Test files in README, notes
This commit is contained in:
parent
4168c645ec
commit
3820a64789
|
@ -57,3 +57,9 @@ Troubleshooting:
|
||||||
1. `makers bundle`
|
1. `makers bundle`
|
||||||
2. Runnable executable is in `target/release`
|
2. Runnable executable is in `target/release`
|
||||||
3. Installable bundles specific for the platform are in `target/release/bundle`
|
3. Installable bundles specific for the platform are in `target/release/bundle`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### Test files
|
||||||
|
|
||||||
|
See the folder `test_files`.
|
||||||
|
|
|
@ -174,7 +174,7 @@ class VarSignalRow {
|
||||||
}
|
}
|
||||||
|
|
||||||
draw() {
|
draw() {
|
||||||
// Screen can be null when we are, for instance, switching between miller column and tree layout
|
// Screen can be null when we are, for instance, switching between miller columns and tree layout
|
||||||
// and then the canvas has to be recreated
|
// and then the canvas has to be recreated
|
||||||
if (this.app.screen === null) {
|
if (this.app.screen === null) {
|
||||||
return;
|
return;
|
||||||
|
@ -182,6 +182,7 @@ class VarSignalRow {
|
||||||
|
|
||||||
this.row_container_background.width = this.app.screen.width;
|
this.row_container_background.width = this.app.screen.width;
|
||||||
|
|
||||||
|
// @TODO optimize by reusing a pool of blocks instead or removing all children on every redraw?
|
||||||
this.signal_blocks_container.removeChildren();
|
this.signal_blocks_container.removeChildren();
|
||||||
this.timeline.blocks.forEach(timeline_block => {
|
this.timeline.blocks.forEach(timeline_block => {
|
||||||
// signal_block
|
// signal_block
|
||||||
|
|
Loading…
Reference in a new issue