diff -r 63f4af6bf6d9 -r 624b9694cb0d controls/VariablePanel.py --- a/controls/VariablePanel.py Wed Aug 16 13:56:36 2017 +0300 +++ b/controls/VariablePanel.py Wed Aug 16 15:18:57 2017 +0300 @@ -512,13 +512,13 @@ "Variables", " Local", " Temp"] #,"Access"] # these condense the ColAlignements list - l = wx.ALIGN_LEFT - c = wx.ALIGN_CENTER - - # Num Name Class Type Loc Init Option Doc - self.ColSizes = [40, 80, 100, 80, 110, 120, 100, 160] - self.ColAlignements = [c, l, l, l, l, l, l, l] - self.ColFixedSizeFlag = [True, False, True, False, True, True, True, False] + left = wx.ALIGN_LEFT + center = wx.ALIGN_CENTER + + # Num Name Class Type Loc Init Option Doc + self.ColSizes = [40, 80, 100, 80, 110, 120, 100, 160] + self.ColAlignements = [center, left, left, left, left, left, left, left] + self.ColFixedSizeFlag = [True, False, True, False, True, True, True, False] else: # this is an element that cannot have located variables @@ -534,13 +534,13 @@ "Variables", " Local", " Temp"] # these condense the ColAlignements list - l = wx.ALIGN_LEFT - c = wx.ALIGN_CENTER - - # Num Name Class Type Init Option Doc - self.ColSizes = [40, 80, 100, 80, 120, 100, 160] - self.ColAlignements = [c, l, l, l, l, l, l] - self.ColFixedSizeFlag = [True, False, True, False, True, True, False] + left = wx.ALIGN_LEFT + center = wx.ALIGN_CENTER + + # Num Name Class Type Init Option Doc + self.ColSizes = [40, 80, 100, 80, 120, 100, 160] + self.ColAlignements = [center, left, left, left, left, left, left] + self.ColFixedSizeFlag = [True, False, True, False, True, True, False] self.PanelWidthMin = sum(self.ColSizes)