Fix for ticket #420 (attribute table can truncate displayed data)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@7794 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
g_j_m 2007-12-16 04:34:20 +00:00
parent 118271aa12
commit 45e72eb6c1

View File

@ -537,6 +537,9 @@ void QgsAttributeTable::fillTable(QgsVectorLayer* layer)
row++;
}
// Make each column wide enough to show all the contents
for (int i = 0; i < numCols(); ++i)
adjustColumn(i);
}
}