Properly size the first column of fittingview, this 'solves' a visual bug in wxmsw (winxp). Do not touch it without consulting me first

This commit is contained in:
HomeWorld
2010-11-15 18:31:25 +02:00
parent 458d1f995e
commit ebed3f3858
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ class State(ViewColumn):
def __init__(self, fittingView, params):
ViewColumn.__init__(self, fittingView)
self.resizable = False
self.size = 24
self.size = 20
self.maxsize = self.size
self.mask = wx.LIST_MASK_IMAGE
for name, state in (("checked", wx.CONTROL_CHECKED), ("unchecked", 0)):