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

Widths in WX_GRID_AUTOSIZER should account for dpi scaling

This commit is contained in:
Mark Roszko 2025-01-31 11:14:40 -05:00
parent 88a404580a
commit a7f5fc45e7
2 changed files with 4 additions and 3 deletions

View File

@ -78,11 +78,13 @@ void WX_GRID_AUTOSIZER::recomputeGridWidths()
{
m_grid.AutoSizeColumn( colIndex );
const int colSize = m_grid.GetColSize( colIndex );
m_grid.SetColSize( colIndex, std::max( minWidth, colSize ) );
int minWidthScaled = m_grid.FromDIP( minWidth );
m_grid.SetColSize( colIndex, std::max( minWidthScaled, colSize ) );
if( colIndex == m_flexibleCol )
{
flexibleMinWidth = minWidth;
flexibleMinWidth = minWidthScaled;
}
}

View File

@ -41,7 +41,6 @@
},
"icu",
"ngspice",
"wxpython",
"libgit2",
"nng",
"protobuf",