'CollapsiblePane',
'ComboCtrl',
'OwnerDrawnComboBox',
+ 'BitmapComboBox',
]),
# managed windows == things with a (optional) caption you can close
'ActiveX_FlashWindow',
'ActiveX_IEHtmlWindow',
'ActiveX_PDFWindow',
- #'RightTextCtrl', deprecated as we have wxTE_RIGHT now.
+ 'BitmapComboBox',
'Calendar',
'CalendarCtrl',
'CheckListCtrlMixin',
filter = self.filter.GetValue()
for category, items in _treeList:
if filter:
- items = [item for item in items if filter in item.lower()]
+ items = [item for item in items if filter.lower() in item.lower()]
if items:
child = self.tree.AppendItem(self.root, category)
if not firstChild: firstChild = child