Skip to content

Commit

Permalink
[Geometry Checker] Improve displayed messages by indicating the layer…
Browse files Browse the repository at this point in the history
… to fix
  • Loading branch information
DelazJ committed Nov 4, 2017
1 parent 33d422b commit 9269200
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 9269200

Please sign in to comment.