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:
parent
e40287d327
commit
1703657fb5
|
@ -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();
|
||||
|
||||
|
|
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in New Issue