Fix symbol editor column widths
102b5301
introduced an issue on GTK where the column width was
incorrect when read, then was set incorrectly (a known problem
on GTK tree views). We should only apply that fix on OSX.
Fixes https://gitlab.com/kicad/code/kicad/issues/3720
This commit is contained in:
parent
be788c6aff
commit
2f75dfb09c
|
@ -203,12 +203,14 @@ void LIB_TREE::Regenerate( bool aKeepState )
|
|||
|
||||
void LIB_TREE::RefreshLibTree()
|
||||
{
|
||||
#ifdef __WXOSX__
|
||||
// Yes, this is an enormous hack. It should be replaced if anyone can figure out a better
|
||||
// way to get the OSX version to re-fetch the text and attributes from the dataModel for
|
||||
// each visible item.
|
||||
int width = m_tree_ctrl->GetColumn( 0 )->GetWidth();
|
||||
m_tree_ctrl->GetColumn( 0 )->SetWidth( width + 1 );
|
||||
m_tree_ctrl->GetColumn( 0 )->SetWidth( width );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue