Skip to content

Commit

Permalink
Allow very large grids.
Browse files Browse the repository at this point in the history
Some folks use them for panelization, drawing board edges, etc.
Whatever the use, we shouldn't get in the way.

Fixes: lp:1484207
* https://bugs.launchpad.net/kicad/+bug/1484207
  • Loading branch information
jey5nd6 authored and stambaughw committed Feb 15, 2018
1 parent 7c506f5 commit ea14743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcbnew/dialogs/dialog_set_grid.cpp
Expand Up @@ -43,7 +43,7 @@
#include <limits.h>

// Max values for grid size
static const double MAX_GRID_SIZE = 50.0 * IU_PER_MM;
static const double MAX_GRID_SIZE = 1000.0 * IU_PER_MM;
static const double MIN_GRID_SIZE = 0.001 * IU_PER_MM;

// Min/Max value for grid offset
Expand Down

0 comments on commit ea14743

Please sign in to comment.