Skip to content

Commit

Permalink
add tooltip for 'Select At Id' option in postgres selection dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Dec 6, 2011
1 parent 2fddef9 commit 0a04dea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/qgsdbtablemodel.cpp
Expand Up @@ -81,6 +81,7 @@ void QgsDbTableModel::addTableEntry( QString type, QString schemaName, QString t
QStandardItem* selItem = new QStandardItem( "" );
selItem->setFlags( Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsUserCheckable );
selItem->setCheckState( Qt::Checked );
selItem->setToolTip( tr( "Disable 'Fast Access to Features at ID' capability to force keeping the attribute table in memory (e.g. in case of expensive views)." ) );

QStandardItem* sqlItem = new QStandardItem( sql );
sqlItem->setFlags( Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable );
Expand Down

0 comments on commit 0a04dea

Please sign in to comment.