Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
g_j_m committed Dec 16, 2007
1 parent 118271a commit 45e72eb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/qgsattributetable.cpp
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 45e72eb

Please sign in to comment.