Skip to content

Commit

Permalink
fix(universe): Default refresh should be false
Browse files Browse the repository at this point in the history
In order to have no negative performance impact on  machines that have no idea what the universe is
even for, the auto-refresh is turned of for a newly generated universe.

fix #127
  • Loading branch information
TimPietrusky committed Jan 5, 2020
1 parent 2b1c5f3 commit 34f2dc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/universe-manager/universe-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class UniverseManager extends connect(store)(LitElement) {
id,
channels: [...Array(512)].map(() => 0),
name: `${id}`,
refresh: true
refresh: false
}))
}

Expand Down

0 comments on commit 34f2dc1

Please sign in to comment.