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 562da32 commit d1970b0Copy full SHA for d1970b0
src/plugins/interpolation/qgsinterpolationdialog.cpp
@@ -309,7 +309,7 @@ void QgsInterpolationDialog::on_mOutputFileButton_clicked()
309
310
void QgsInterpolationDialog::on_mOutputFileLineEdit_textChanged()
311
{
312
- if ( mOutputFileLineEdit->text().endsWith(".asc"))
+ if ( mOutputFileLineEdit->text().endsWith( ".asc" ) )
313
314
enableOrDisableOkButton();
315
}
@@ -405,6 +405,7 @@ void QgsInterpolationDialog::on_mBBoxToCurrentExtent_clicked()
405
mXMaxLineEdit->setText( QString::number( extent.xMaximum() ) );
406
mYMinLineEdit->setText( QString::number( extent.yMinimum() ) );
407
mYMaxLineEdit->setText( QString::number( extent.yMaximum() ) );
408
+ setNewCellsizeOnBoundingBoxChange();
409
410
411
0 commit comments