Fix polarity of "drag is drag" checkbox
Fixes https://gitlab.com/kicad/code/kicad/issues/3861
This commit is contained in:
parent
2d7f4d60c5
commit
27fb664693
|
@ -55,7 +55,7 @@ bool PANEL_EESCHEMA_SETTINGS::TransferDataToWindow()
|
|||
m_checkAutoplaceJustify->SetValue( m_frame->GetAutoplaceJustify() );
|
||||
m_checkAutoplaceAlign->SetValue( m_frame->GetAutoplaceAlign() );
|
||||
|
||||
m_mouseDragIsDrag->SetValue( m_frame->GetDragActionIsMove() );
|
||||
m_mouseDragIsDrag->SetValue( !m_frame->GetDragActionIsMove() );
|
||||
|
||||
m_cbPinSelectionOpt->SetValue( m_frame->GetSelectPinSelectSymbol() );
|
||||
|
||||
|
|
Loading…
Reference in New Issue