From 07b87e8d9b49b46bbe71d414feb35db2be278586 Mon Sep 17 00:00:00 2001 From: "Patrick K. O'Brien" Date: Sun, 8 Feb 2004 21:48:07 +0000 Subject: [PATCH] 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 --- wxPython/wx/py/CHANGES.txt | 2 ++ wxPython/wx/py/crust.py | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/wxPython/wx/py/CHANGES.txt b/wxPython/wx/py/CHANGES.txt index 26d33cd436..eed5b74fee 100644 --- a/wxPython/wx/py/CHANGES.txt +++ b/wxPython/wx/py/CHANGES.txt @@ -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) ------------------------------ 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): -- 2.50.0