Index: app/attributetable/qgsattributetabledialog.cpp =================================================================== --- app/attributetable/qgsattributetabledialog.cpp (revisione 14224) +++ app/attributetable/qgsattributetabledialog.cpp (copia locale) @@ -352,6 +352,7 @@ updateRowSelection( first, last, 3 ); mView->setSelectionMode( QAbstractItemView::NoSelection ); + setWindowTitle( tr ("Attribute table - %1 (%n featues(s) selected)", "feature count", mView->selectionModel()->selectedRows().size()).arg( mLayer->name()) ); return; } else // No drag @@ -401,6 +402,7 @@ } } mView->setSelectionMode( QAbstractItemView::NoSelection ); + setWindowTitle( tr ("Attribute table - %1 (%n featues(s) selected)", "feature count", mView->selectionModel()->selectedRows().size()).arg( mLayer->name()) ); } void QgsAttributeTableDialog::updateRowSelection( int first, int last, int clickType )