Skip to content

Commit 45e72eb

Browse files
author
g_j_m
committed
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
1 parent 118271a commit 45e72eb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/app/qgsattributetable.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,9 @@ void QgsAttributeTable::fillTable(QgsVectorLayer* layer)
537537
row++;
538538
}
539539

540+
// Make each column wide enough to show all the contents
541+
for (int i = 0; i < numCols(); ++i)
542+
adjustColumn(i);
540543
}
541544
}
542545

0 commit comments

Comments
 (0)