git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25667
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
* wxPython Docs
* wxSTC Docs
* wxPython Docs
* wxSTC Docs
+Fixed Calltip tab refresh problem on Windows.
+
0.9.3 (9/25/2003 to 1/24/2004)
------------------------------
0.9.3 (9/25/2003 to 1/24/2004)
------------------------------
def display(self, calltip):
"""Receiver for Shell.calltip signal."""
def display(self, calltip):
"""Receiver for Shell.calltip signal."""
+ ## self.SetValue(calltip) # Caused refresh problem on Windows.
+ self.Clear()
+ self.AppendText(calltip)
class SessionListing(wx.TextCtrl):
class SessionListing(wx.TextCtrl):