diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2001-07-12 22:26:44 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2001-07-12 22:26:44 (GMT) |
commit | 9a1ae1a9605b2832e2cdfee1f35cbb811ca2729f (patch) | |
tree | 65e5ae0ef5df524fb15d6cc20f347c6a448950d0 | |
parent | 180b6be18cdabbd1b6a7d6e523f68c231ec3f0d5 (diff) | |
download | cpython-9a1ae1a9605b2832e2cdfee1f35cbb811ca2729f.zip cpython-9a1ae1a9605b2832e2cdfee1f35cbb811ca2729f.tar.gz cpython-9a1ae1a9605b2832e2cdfee1f35cbb811ca2729f.tar.bz2 |
py-cvs-rel2_1 (Rev 1.3) merge - whitespace normalization
-rw-r--r-- | Lib/idlelib/CallTipWindow.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/CallTipWindow.py b/Lib/idlelib/CallTipWindow.py index cbeab8c..d253fa5 100644 --- a/Lib/idlelib/CallTipWindow.py +++ b/Lib/idlelib/CallTipWindow.py @@ -28,7 +28,7 @@ class CallTip: background="#ffffe0", relief=SOLID, borderwidth=1, font = self.widget['font']) label.pack() - + def hidetip(self): tw = self.tipwindow self.tipwindow = None @@ -53,7 +53,7 @@ class container: # Conceptually an editor_window text.event_add("<<calltip-hide>>", ")") text.bind("<<calltip-show>>", self.calltip_show) text.bind("<<calltip-hide>>", self.calltip_hide) - + text.focus_set() # root.mainloop() # not in idle |