Set Module Editor flag for tools
The commit takes the module edit flag when resetting the tool. All tools should reset this flag when we setup the Module editor. This is slightly different in master and v5, so this is a rework of 7bdf71abc Fixes #3973 | https://gitlab.com/kicad/code/kicad/issues/3973
This commit is contained in:
parent
1ffcedd9d4
commit
100bb7c6ca
|
@ -1020,10 +1020,13 @@ void FOOTPRINT_EDIT_FRAME::setupTools()
|
|||
m_toolManager->RegisterTool( new PICKER_TOOL );
|
||||
m_toolManager->RegisterTool( new POSITION_RELATIVE_TOOL );
|
||||
|
||||
m_toolManager->GetTool<PAD_TOOL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<SELECTION_TOOL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<EDIT_TOOL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<PAD_TOOL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<DRAWING_TOOL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<POINT_EDITOR>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<PCBNEW_CONTROL>()->SetEditModules( true );
|
||||
m_toolManager->GetTool<POSITION_RELATIVE_TOOL>()->SetEditModules( true );
|
||||
|
||||
m_toolManager->InitTools();
|
||||
|
||||
|
|
Loading…
Reference in New Issue