Browse Source

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
pull/5/merge
Jeff Young 8 years ago
committed by Wayne Stambaugh
parent
commit
ea1474307c
  1. 2
      pcbnew/dialogs/dialog_set_grid.cpp

2
pcbnew/dialogs/dialog_set_grid.cpp

@ -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…
Cancel
Save