Skip to content

Commit 20015e7

Browse files
committedMay 27, 2014
Attribute table: Fix repaint on change
Fix #10345
1 parent b41944f commit 20015e7

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
@@ -515,7 +515,7 @@ bool QgsAttributeTableModel::setData( const QModelIndex &index, const QVariant &
515515

516516
if ( mChangedCellBounds.isNull() )
517517
{
518-
mChangedCellBounds = QRect( index.column(), index.row(), 0, 0 );
518+
mChangedCellBounds = QRect( index.column(), index.row(), index.column(), index.row() + 1 );
519519
}
520520
else
521521
{

0 commit comments

Comments
 (0)
Please sign in to comment.