from shell import Shell
from version import VERSION
-try:
- True
-except NameError:
- True = 1==1
- False = 1==0
-
class Crust(wx.SplitterWindow):
"""Crust based on SplitterWindow."""
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):