Skip to content

Commit

Permalink
[ui] Fix raster format options widget minimum height
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn authored and nyalldawson committed Jan 6, 2022
1 parent ce7d422 commit 9a34574
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 9a34574

Please sign in to comment.