diff -r e23359f62023 -r d62424ba12bf objdictgen/subindextable.py --- a/objdictgen/subindextable.py Tue Sep 15 10:47:38 2009 +0200 +++ b/objdictgen/subindextable.py Tue Sep 15 10:58:38 2009 +0200 @@ -221,6 +221,8 @@ maplist = None for row in range(self.GetNumberRows()): editors = self.editors[row] + grid.SetRowMinimalHeight(row, 28) + grid.AutoSizeRow(row, False) for col in range(self.GetNumberCols()): editor = None renderer = None @@ -464,9 +466,9 @@ self.AddButton.Bind(wx.EVT_BUTTON, self.OnAddButtonClick, id=ID_EDITINGPANELADDBUTTON) - self.IndexChoice = wx.Choice(choices=[], id=ID_EDITINGPANELINDEXCHOICE, + self.IndexChoice = wx.ComboBox(choices=[], id=ID_EDITINGPANELINDEXCHOICE, name='IndexChoice', parent=self.IndexListPanel, pos=wx.Point(50, - 0), size=wx.Size(-1, 30), style=0) + 0), size=wx.Size(-1, 30), style=wx.CB_READONLY) self._init_sizers()