Eeschema: fix symbol library link not showing

In wxWidgets GTK, SetLabel() won't show anything. Seems like an old
wxWidgets issue:
https://forums.wxwidgets.org/viewtopic.php?t=20207
This commit is contained in:
Mike Williams 2021-07-28 13:40:35 -04:00
parent 46338403e7
commit 934b6e4cdc
1 changed files with 1 additions and 1 deletions

View File

@ -497,7 +497,7 @@ bool DIALOG_SYMBOL_PROPERTIES::TransferDataToWindow()
}
// Set the symbol's library name.
m_tcLibraryID->SetLabelText( UnescapeString( m_symbol->GetLibId().Format() ) );
m_tcLibraryID->SetValue( UnescapeString( m_symbol->GetLibId().Format() ) );
Layout();