Skip to content

Commit

Permalink
Merge pull request #4094 from node-red/increase-workspace
Browse files Browse the repository at this point in the history
Increase workspace size to 8000x8000
  • Loading branch information
knolleary committed Mar 6, 2023
2 parents 4deca55 + 0fdf426 commit 9f121f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -17,9 +17,9 @@

RED.view.navigator = (function() {

var nav_scale = 25;
var nav_width = 5000/nav_scale;
var nav_height = 5000/nav_scale;
var nav_scale = 50;
var nav_width = 8000/nav_scale;
var nav_height = 8000/nav_scale;

var navContainer;
var navBox;
Expand Down
Expand Up @@ -30,8 +30,8 @@
*/

RED.view = (function() {
var space_width = 5000,
space_height = 5000,
var space_width = 8000,
space_height = 8000,
lineCurveScale = 0.75,
scaleFactor = 1,
node_width = 100,
Expand Down

0 comments on commit 9f121f4

Please sign in to comment.