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:
@@ -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)
|
||||
------------------------------
|
||||
|
@@ -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):
|
||||
|
Reference in New Issue
Block a user