]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/wx/py/crust.py
added base array of size_t as under Win64 size_t > long
[wxWidgets.git] / wxPython / wx / py / crust.py
index e42d90206fb9a11872c6c4a8e3c2b1dedb9596fc..ef9d235804987fa088c36b7cadfae68fe051681a 100644 (file)
@@ -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):