[wxPython] STC tab-focus question

I've a Panel with some TextCtrl widgets and a wxStyledTextCtrl one.
When I hit Tab key in the wxStyledTextCtrl widget, a tab is inserted in
the text,
but the focus is changed to the next widget in the list.
There is a way of limiting the tab-change-focus only to the other
widgets?

Thank You

Alex

I've a Panel with some TextCtrl widgets and a wxStyledTextCtrl one.
When I hit Tab key in the wxStyledTextCtrl widget, a tab is inserted in
the text,
but the focus is changed to the next widget in the list.
There is a way of limiting the tab-change-focus only to the other
widgets?

The tab traversal comes from the panel, but if you turn it off there you
will lose it for the other controls as well. You may want to try putting
the wxSTC on a separate panel that has style=0.

ยทยทยท

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!