Skip to content

Commit 25c1d04

Browse files
committedJan 3, 2012
fix #4732
1 parent 67feff8 commit 25c1d04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/gui/attributetable/qgsattributetablemodel.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ Qt::ItemFlags QgsAttributeTableModel::flags( const QModelIndex &index ) const
506506

507507
void QgsAttributeTableModel::reload( const QModelIndex &index1, const QModelIndex &index2 )
508508
{
509-
for( int row = index1.row(); row < index2.row(); row++ )
509+
for( int row = index1.row(); row <= index2.row(); row++ )
510510
{
511511
QgsFeatureId fid = rowToId( row );
512512
mFeatureMap.remove( fid );

0 commit comments

Comments
 (0)
Please sign in to comment.