X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/65d005e44d357b99f9e3a2c6c4a971110dfad7ee..e55e94865fb13bdae40e79e56b13b29cd99ca82a:/wxPython/wx/py/crust.py diff --git a/wxPython/wx/py/crust.py b/wxPython/wx/py/crust.py index e42d90206f..ef9d235804 100644 --- a/wxPython/wx/py/crust.py +++ b/wxPython/wx/py/crust.py @@ -124,7 +124,9 @@ class Calltip(wx.TextCtrl): def display(self, calltip): """Receiver for Shell.calltip signal.""" - self.SetValue(calltip) + ## self.SetValue(calltip) # Caused refresh problem on Windows. + self.Clear() + self.AppendText(calltip) class SessionListing(wx.TextCtrl):