Bugfix for "Edit text and graphic properties" dialog: vertical alignment code
erroneously checked against change in horizontal alignment UI item
This commit is contained in:
parent
cfa3f3afeb
commit
1ac81c04e5
|
@ -246,7 +246,7 @@ void DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::processItem( const SCH_SHEET_PATH& aS
|
||||||
m_hasChange = true;
|
m_hasChange = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( m_hAlign->GetStringSelection() != INDETERMINATE_ACTION )
|
if( m_vAlign->GetStringSelection() != INDETERMINATE_ACTION )
|
||||||
{
|
{
|
||||||
eda_text->SetVertJustify( EDA_TEXT::MapVertJustify( m_vAlign->GetSelection() - 1 ) );
|
eda_text->SetVertJustify( EDA_TEXT::MapVertJustify( m_vAlign->GetSelection() - 1 ) );
|
||||||
m_hasChange = true;
|
m_hasChange = true;
|
||||||
|
|
Loading…
Reference in New Issue