Skip to content

Commit

Permalink
Fix warning when opening attribute table
Browse files Browse the repository at this point in the history
When init()ing QgsDualView through the attribute table it is
usually done BEFORE the model has been populated, so this code
has no effect and throws a warning.

There's no feature regression by removing this - the first
entry is still selected by default (elsewhere)
  • Loading branch information
nyalldawson committed Mar 13, 2019
1 parent e620b9c commit 60ad7f9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/gui/attributetable/qgsdualview.cpp
Expand Up @@ -110,8 +110,6 @@ void QgsDualView::init( QgsVectorLayer *layer, QgsMapCanvas *mapCanvas, const Qg

// This slows down load of the attribute table heaps and uses loads of memory.
//mTableView->resizeColumnsToContents();

mFeatureList->setEditSelection( QgsFeatureIds() << mFeatureListModel->idxToFid( mFeatureListModel->index( 0, 0 ) ) );
}

void QgsDualView::columnBoxInit()
Expand Down

0 comments on commit 60ad7f9

Please sign in to comment.