Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ui] Fix raster format options widget minimum height
  • Loading branch information
nirvn authored and nyalldawson committed Jan 6, 2022
1 parent 8021e06 commit 5a3b771
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gui/qgsrasterformatsaveoptionswidget.cpp
Expand Up @@ -43,6 +43,8 @@ QgsRasterFormatSaveOptionsWidget::QgsRasterFormatSaveOptionsWidget( QWidget *par
, mProvider( provider )
{
setupUi( this );
setMinimumSize( this->fontMetrics().height() * 5, 240 );

connect( mProfileNewButton, &QPushButton::clicked, this, &QgsRasterFormatSaveOptionsWidget::mProfileNewButton_clicked );
connect( mProfileDeleteButton, &QPushButton::clicked, this, &QgsRasterFormatSaveOptionsWidget::mProfileDeleteButton_clicked );
connect( mProfileResetButton, &QPushButton::clicked, this, &QgsRasterFormatSaveOptionsWidget::mProfileResetButton_clicked );
Expand Down

0 comments on commit 5a3b771

Please sign in to comment.