Fix for first column fracked up size

This commit is contained in:
HomeWorld
2010-11-15 18:49:41 +02:00
parent ebed3f3858
commit 97c2c51457
3 changed files with 5 additions and 3 deletions

View File

@@ -74,6 +74,8 @@ class Display(wx.ListCtrl):
info.m_format = wx.LIST_FORMAT_LEFT
self.InsertColumnInfo(i, info)
col.resized = False
if i == 0:
col.size += 4
self.SetColumnWidth(i, col.size)
def getColIndex(self, colClass):