We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 060af36 commit 88e177aCopy full SHA for 88e177a
src/app/qgisapp.cpp
@@ -1320,6 +1320,9 @@ void QgisApp::createStatusBar()
1320
mScaleEdit = new QgsScaleComboBox( statusBar() );
1321
mScaleEdit->setObjectName( "mScaleEdit" );
1322
mScaleEdit->setFont( myFont );
1323
+ // seems setFont() change font only for popup not for line edit,
1324
+ // so we need to set font for it separately
1325
+ mScaleEdit->lineEdit()->setFont( myFont );
1326
mScaleEdit->setMinimumWidth( 10 );
1327
mScaleEdit->setMaximumWidth( 100 );
1328
mScaleEdit->setMaximumHeight( 20 );
0 commit comments