I created a TreeListCtrl in wxPython like following.
self.tree = wx.gizmos.TreeListCtrl(self, style =
wx.TR_DEFAULT_STYLE
| wx.TR_FULL_ROW_HIGHLIGHT | wx.TR_HIDE_ROOT | wx.TR_HAS_VARIABLE_ROW_HEIGHT)
As you see i set wx.TR_HAS_VARIABLE_ROW_HEIGHT but there is no effect. All the rows have same height.
How can i change the row height in TreeListCtrl.
Regards,