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 markroseman
Recipients gpolo, markroseman
Date 2009-07-22.22:10:47
SpamBayes Score 1.1695618e-05
Marked as misclassified No
Message-id <1248300651.32.0.979739193906.issue6549@psf.upfronthosting.co.za>
In-reply-to
Content
Just a couple of minor things which this terminal session points out


s = ttk.Style()
s.element_options('Button.label')
('-compound', '-space', '-text', '-font', '-foreground', '-underline',
'-width', '-anchor', '-justify', '-wraplength', '-embossed', '-image',
'-stipple', '-background')
s.configure('TButton', font='helvetica 24')
{}
b = ttk.Button(root)
b.configure(text='blah')



The 'element_options' call presumably shouldn't include the dashes, i.e.
'compound' rather than '-compound'

The configure call shouldn't be returning anything, akin to how configuring
a button works.

Again, just little things..
History
Date User Action Args
2009-07-22 22:10:51markrosemansetrecipients: + markroseman, gpolo
2009-07-22 22:10:51markrosemansetmessageid: <1248300651.32.0.979739193906.issue6549@psf.upfronthosting.co.za>
2009-07-22 22:10:48markrosemanlinkissue6549 messages
2009-07-22 22:10:47markrosemancreate