X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/606d919c51d0e5fe7492182bab9ad3c69d82af5f..d42e29c26f11f0875315ec7e4de52529f9d0aa52:/wxPython/src/_extras.py diff --git a/wxPython/src/_extras.py b/wxPython/src/_extras.py index b3f9e52b3f..fd014225e5 100644 --- a/wxPython/src/_extras.py +++ b/wxPython/src/_extras.py @@ -131,6 +131,9 @@ def EVT_WINDOW_CREATE(win, func): def EVT_WINDOW_DESTROY(win, func): win.Connect(-1, -1, wxEVT_DESTROY, func) +def EVT_SET_CURSOR(win, func): + win.Connect(-1, -1, wxEVT_SET_CURSOR, func) + def EVT_IDLE(win, func):