Skip to content
Permalink
Browse files
add tooltip for 'Select At Id' option in postgres selection dialog
  • Loading branch information
jef-n committed Dec 6, 2011
1 parent 2fddef9 commit 0a04dea
Showing 1 changed file with 1 addition and 0 deletions.
@@ -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 );

0 comments on commit 0a04dea

Please sign in to comment.