Commit ecb1a65f authored by Barry Warsaw's avatar Barry Warsaw

Helpwin.__init__(): The text widget should get focus.

parent 61ba0721
......@@ -227,6 +227,7 @@ class Helpwin:
self.__text = text = Text(root, relief=SUNKEN,
width=80, height=24)
self.__text.focus_set()
text.insert(0.0, contents)
scrollbar = Scrollbar(root)
scrollbar.pack(fill=Y, side=RIGHT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment