Decrease default snap range

The snap range needs tuning to preference and monitor resolution.  This
shifts the default range down for users until the customization bits are
implemented.
This commit is contained in:
Seth Hillbrand 2020-09-12 08:32:51 -07:00
parent e40287d327
commit 1703657fb5
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ EE_GRID_HELPER::EE_GRID_HELPER( TOOL_MANAGER* aToolMgr ) :
{
m_enableSnap = true;
m_enableSnapLine = true;
m_snapSize = 100;
m_snapSize = 25;
m_snapItem = nullptr;
KIGFX::VIEW* view = m_toolMgr->GetView();

View File

@ -52,7 +52,7 @@ GRID_HELPER::GRID_HELPER( TOOL_MANAGER* aToolMgr, MAGNETIC_SETTINGS* aMagneticSe
m_enableSnap = true;
m_enableGrid = true;
m_enableSnapLine = true;
m_snapSize = 100;
m_snapSize = 25;
m_snapItem = nullptr;
KIGFX::VIEW* view = m_toolMgr->GetView();