Skip to content

Commit

Permalink
Better implementation of 20015e7
Browse files Browse the repository at this point in the history
Fix #10345
  • Loading branch information
m-kuhn committed May 27, 2014
1 parent 101d3c4 commit ee770c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/attributetable/qgsattributetablemodel.cpp
Expand Up @@ -515,7 +515,7 @@ bool QgsAttributeTableModel::setData( const QModelIndex &index, const QVariant &

if ( mChangedCellBounds.isNull() )
{
mChangedCellBounds = QRect( index.column(), index.row(), index.column(), index.row() + 1 );
mChangedCellBounds = QRect( index.column(), index.row(), 0, 1 );
}
else
{
Expand Down

0 comments on commit ee770c4

Please sign in to comment.