Skip to content

Commit

Permalink
Merge pull request #5530 from DelazJ/chkgeom_messages
Browse files Browse the repository at this point in the history
[Geometry Checker] Improve displayed message by indicating the layer…
  • Loading branch information
nyalldawson committed Nov 12, 2017
2 parents 0fa9041 + 9269200 commit 41abc0b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -279,7 +279,7 @@ void QgsGeometryCheckerSetupTab::runChecks()
{
if ( layer->isEditable() )
{
QMessageBox::critical( this, tr( "Editable Input Layer" ), tr( "Input layer are not allowed to be in editing mode." ) );
QMessageBox::critical( this, tr( "Editable Input Layer" ), tr( "Input layer '%1' is not allowed to be in editing mode." ).arg( layer->name() ) );
return;
}
}
Expand Down

0 comments on commit 41abc0b

Please sign in to comment.