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:
parent
88a404580a
commit
a7f5fc45e7
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -41,7 +41,6 @@
|
||||
},
|
||||
"icu",
|
||||
"ngspice",
|
||||
"wxpython",
|
||||
"libgit2",
|
||||
"nng",
|
||||
"protobuf",
|
||||
|
Loading…
Reference in New Issue
Block a user