diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-15 21:29:27 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-07-15 21:29:27 (GMT) |
commit | b9ee881f8bd92bc3aac4ae8072d148f3166770ec (patch) | |
tree | cdbabbe05a0e733daac434d51dea581b12bfc32c /Lib | |
parent | 999ecc0eaf88dc73c386d360183c3899242e7ffd (diff) | |
download | cpython-b9ee881f8bd92bc3aac4ae8072d148f3166770ec.zip cpython-b9ee881f8bd92bc3aac4ae8072d148f3166770ec.tar.gz cpython-b9ee881f8bd92bc3aac4ae8072d148f3166770ec.tar.bz2 |
#6076 Add a title to the IDLE Preferences window.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/configDialog.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index 2f66d09..2f199a0 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -28,6 +28,7 @@ class ConfigDialog(Toplevel): self.wm_withdraw() self.configure(borderwidth=5) + self.title('IDLE Preferences') self.geometry("+%d+%d" % (parent.winfo_rootx()+20, parent.winfo_rooty()+30)) #Theme Elements. Each theme element key is its display name. |