Fix default pin orientation (from Coverity scan)

This commit is contained in:
Ian McInerney 2020-01-12 11:55:03 +00:00
parent 76c26d6ae1
commit ae91312416
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ bool DIALOG_LIB_EDIT_TEXT::TransferDataToWindow()
m_CommonUnit->SetValue( !m_parent->m_DrawSpecificUnit );
m_CommonConvert->SetValue( !m_parent->m_DrawSpecificConvert );
m_orientChoice->SetSelection( m_graphicText->GetTextAngle() == TEXT_ANGLE_HORIZ ? 0 : 1 );
m_orientChoice->SetSelection( m_parent->g_LastTextAngle == TEXT_ANGLE_HORIZ ? 0 : 1 );
}
return true;