Min width of pl_editor properties should be FromDIPed

This commit is contained in:
Marek Roszko 2024-01-17 22:53:26 -05:00
parent b41cd7981e
commit ef3e305db4
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ void PROPERTIES_FRAME::OnPageChanged( wxNotebookEvent& event )
wxSize PROPERTIES_FRAME::GetMinSize() const
{
return wxSize( 150, -1 );
return FromDIP( wxSize( 150, -1 ) );
}