mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
#3018: tkinter demo fixes for py3k.
This commit is contained in:
parent
07e4f1565b
commit
856023a098
18 changed files with 196 additions and 179 deletions
|
@ -24,8 +24,7 @@ def dialog(master, title, text, bitmap, default, *args):
|
|||
|
||||
# 2. Fill the top part with the bitmap and message.
|
||||
|
||||
msg = Message(top, width='3i', text=text,
|
||||
font='-Adobe-Times-Medium-R-Normal-*-180-*')
|
||||
msg = Message(top, width='3i', text=text)
|
||||
msg.pack(side=RIGHT, expand=1, fill=BOTH, padx='3m', pady='3m')
|
||||
if bitmap:
|
||||
bm = Label(top, bitmap=bitmap)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue