Minor cleanup to edit label dialog.

This commit is contained in:
Jeff Young 2020-06-30 19:55:04 +01:00
parent 61b5a12362
commit 6d56ba2072
1 changed files with 2 additions and 2 deletions

View File

@ -169,13 +169,13 @@ void DIALOG_EDIT_ONE_FIELD::OnSetFocusText( wxFocusEvent& event )
// Note that we can't do this on OSX as it tends to provoke Apple's
// "[NSAlert runModal] may not be invoked inside of transaction begin/commit pair"
// bug. See: https://bugs.launchpad.net/kicad/+bug/1837225
if( m_fieldId == REFERENCE || m_fieldId == VALUE )
if( m_fieldId == REFERENCE || m_fieldId == VALUE || m_fieldId == SHEETNAME_V )
m_TextCtrl->Update();
#endif
if( m_fieldId == REFERENCE )
SelectReferenceNumber( static_cast<wxTextEntry*>( m_TextCtrl ) );
else if( m_fieldId == VALUE )
else if( m_fieldId == VALUE || m_fieldId == SHEETNAME_V )
m_TextCtrl->SetSelection( -1, -1 );
event.Skip();