This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author gpolo
Recipients gpolo, kurtforrester
Date 2009-12-24.16:55:27
SpamBayes Score 2.0355317e-05
Marked as misclassified No
Message-id <1261673728.99.0.777621735398.issue7526@psf.upfronthosting.co.za>
In-reply-to
Content
I get the same behavior while using ttk in wish8.5, so this is not 
related to the ttk.py module.

But, after looking this sample you posted, it looks like you want 
something like this instead:

from tkinter import Tk, Menu

root = Tk()
menu = Menu()
root['menu'] = menu

filemenu = Menu(menu)
menu.add_cascade(label="File", menu=filemenu, underline=0)
filemenu.add_command(label="New", accelerator="Ctrl+N")

root.geometry("300x300")
root.mainloop()
History
Date User Action Args
2009-12-24 16:55:29gpolosetrecipients: + gpolo, kurtforrester
2009-12-24 16:55:28gpolosetmessageid: <1261673728.99.0.777621735398.issue7526@psf.upfronthosting.co.za>
2009-12-24 16:55:27gpololinkissue7526 messages
2009-12-24 16:55:27gpolocreate