Fixed problem with Calltip tab not refreshing properly on Windows.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25667 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Patrick K. O'Brien
2004-02-08 21:48:07 +00:00
parent 6efbb55bf6
commit 07b87e8d9b
2 changed files with 5 additions and 1 deletions

View File

@@ -7,6 +7,8 @@ Removed docs tabs from crust interface:
* wxPython Docs
* wxSTC Docs
Fixed Calltip tab refresh problem on Windows.
0.9.3 (9/25/2003 to 1/24/2004)
------------------------------

View 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):