Commit cedcd2ba authored by Andrey Fedorushkov's avatar Andrey Fedorushkov

eeschema: fix segfault when edit text and empty editing text

parent eee97387
......@@ -257,7 +257,10 @@ void DIALOG_LABEL_EDITOR::TextPropertiesAccept( wxCommandEvent& aEvent )
if( !text.IsEmpty() )
m_CurrentText->m_Text = text;
else if( !m_CurrentText->IsNew() )
{
DisplayError( this, _( "Empty Text!" ) );
return;
}
m_CurrentText->SetOrientation( m_TextOrient->GetSelection() );
text = m_TextSize->GetValue();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment