summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/textView.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-12 02:07:31 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-12 02:07:31 (GMT)
commitd0cadba85f1c70e8bce20dbe8cc54a4e1fe8cb5e (patch)
treeb61768a57aebe25f8727114b8a1a509b66593b8b /Lib/idlelib/textView.py
parent1fdc80b55f4d1cb0a39aa271db3b579ce5094d77 (diff)
downloadcpython-d0cadba85f1c70e8bce20dbe8cc54a4e1fe8cb5e.zip
cpython-d0cadba85f1c70e8bce20dbe8cc54a4e1fe8cb5e.tar.gz
cpython-d0cadba85f1c70e8bce20dbe8cc54a4e1fe8cb5e.tar.bz2
Issue #22726: Re-activate config dialog help button with some content about
the other buttons and the new IDLE Dark theme.
Diffstat (limited to 'Lib/idlelib/textView.py')
-rw-r--r--Lib/idlelib/textView.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/textView.py b/Lib/idlelib/textView.py
index 4257eea..01b2d8f 100644
--- a/Lib/idlelib/textView.py
+++ b/Lib/idlelib/textView.py
@@ -21,7 +21,7 @@ class TextViewer(Toplevel):
Toplevel.__init__(self, parent)
self.configure(borderwidth=5)
# place dialog below parent if running htest
- self.geometry("=%dx%d+%d+%d" % (625, 500,
+ self.geometry("=%dx%d+%d+%d" % (750, 500,
parent.winfo_rootx() + 10,
parent.winfo_rooty() + (10 if not _htest else 100)))
#elguavas - config placeholders til config stuff completed