[Python-checkins] r74019 - python/trunk/Lib/idlelib/configDialog.py

amaury.forgeotdarc python-checkins at python.org
Wed Jul 15 23:29:27 CEST 2009


Author: amaury.forgeotdarc
Date: Wed Jul 15 23:29:27 2009
New Revision: 74019

Log:
#6076 Add a title to the IDLE Preferences window.


Modified:
   python/trunk/Lib/idlelib/configDialog.py

Modified: python/trunk/Lib/idlelib/configDialog.py
==============================================================================
--- python/trunk/Lib/idlelib/configDialog.py	(original)
+++ python/trunk/Lib/idlelib/configDialog.py	Wed Jul 15 23:29:27 2009
@@ -28,6 +28,7 @@
         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.


More information about the Python-checkins mailing list