From: Robin Dunn Date: Mon, 26 Aug 2002 19:45:38 +0000 (+0000) Subject: Ensure that the busy cursor is dismissed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1f7314bce92bde37b17b4812bb4381565c8e6077 Ensure that the busy cursor is dismissed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/PyCrust/shell.py b/wxPython/wxPython/lib/PyCrust/shell.py index 693c9408e5..3f96dd3f44 100644 --- a/wxPython/wxPython/lib/PyCrust/shell.py +++ b/wxPython/wxPython/lib/PyCrust/shell.py @@ -667,6 +667,7 @@ class Shell(wxStyledTextCtrl): busy = wxBusyCursor() self.write(os.linesep) self.more = self.interp.push(command) + del busy if not self.more: self.addHistory(command.rstrip()) self.prompt()