7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:55:30 +00:00

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

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 ) );
}