mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-04 00:06:15 -04:00
[hidpi] Apply UI_SCALE_FACTOR multiplier to font metrics
On windows too.
This commit is contained in:
parent
251b2aefdf
commit
b6dd62facb
@ -67,10 +67,10 @@ QSize QgsColorRampButton::sizeHint() const
|
||||
{
|
||||
//make sure height of button looks good under different platforms
|
||||
#ifdef Q_OS_WIN
|
||||
return QSize( 120, 22 );
|
||||
return QSize( 120, static_cast<int>( std::max( Qgis::UI_SCALE_FACTOR * fontMetrics().height( ), 22.0 ) ) );
|
||||
#else
|
||||
// Adjust height for HiDPI screens
|
||||
return QSize( 120, std::max( static_cast<int>( fontMetrics().height( ) * 1.4 ), 28 ) );
|
||||
return QSize( 120, static_cast<int>( std::max( Qgis::UI_SCALE_FACTOR * fontMetrics().height( ) * 1.4, 28.0 ) ) );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user