Fix cut-off library tree cell texts.
This commit is contained in:
parent
4fb11e210a
commit
ac59fae152
|
@ -47,7 +47,9 @@ public:
|
|||
|
||||
wxSize GetSize() const override
|
||||
{
|
||||
return wxSize( GetOwner()->GetWidth(), GetTextExtent( m_text ).y );
|
||||
wxSize size( GetOwner()->GetWidth(), GetTextExtent( m_text ).y );
|
||||
size.IncBy( 2, 2 );
|
||||
return size;
|
||||
}
|
||||
|
||||
bool GetValue( wxVariant& aValue ) const override
|
||||
|
|
Loading…
Reference in New Issue