The current implementation of TableView#setColumnWidth only updates the cache, but does not actually update the column, until it has to be redrawn.
This PR fixes that. I didn't find any existing method to invalidate a column, so I added one. Let me know if I missed something, and I'll update my fix accordingly.
The current implementation of
TableView#setColumnWidth
only updates the cache, but does not actually update the column, until it has to be redrawn. This PR fixes that. I didn't find any existing method to invalidate a column, so I added one. Let me know if I missed something, and I'll update my fix accordingly.