Skip to content

Commit 9269200

Browse files
committed
[Geometry Checker] Improve displayed messages by indicating the layer to fix
1 parent 33d422b commit 9269200

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/geometry_checker/qgsgeometrycheckersetuptab.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ void QgsGeometryCheckerSetupTab::runChecks()
279279
{
280280
if ( layer->isEditable() )
281281
{
282-
QMessageBox::critical( this, tr( "Editable Input Layer" ), tr( "Input layer are not allowed to be in editing mode." ) );
282+
QMessageBox::critical( this, tr( "Editable Input Layer" ), tr( "Input layer '%1' is not allowed to be in editing mode." ).arg( layer->name() ) );
283283
return;
284284
}
285285
}

0 commit comments

Comments
 (0)