Scintilla has a method SCI_ADDUNDOACTION(int token, int flags) in C++.
I have not found this method in wx.stc.StyledTextCtrl.
Is there anything I can do to help port/test this method to wxPython?
Fabio
That method was not added to Scintilla until after the version used by wxPython 2.8. The version of Scintilla used in wxPython 2.9.1 (unreleased) does have it. So you can wait until 2.9.1 builds are available, or make your own builds from SVN.
···
On 5/15/10 2:00 PM, fabio67 wrote:
Scintilla has a method SCI_ADDUNDOACTION(int token, int flags) in C++.
I have not found this method in wx.stc.StyledTextCtrl.
Is there anything I can do to help port/test this method to wxPython?