Allow very large grids.
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
This commit is contained in:
parent
7c506f5b3a
commit
ea1474307c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue