summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/textView.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2015-10-12 02:07:25 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2015-10-12 02:07:25 (GMT)
commitc0a053e4d5a73b8493ca3336f0c37835b1d35a9e (patch)
tree1ed146a2f73542f5e4a54fa17ef9571747886b1d /Lib/idlelib/textView.py
parentd2a19c2c6764a77fbcd493fdc616e2a2d4940e9b (diff)
downloadcpython-c0a053e4d5a73b8493ca3336f0c37835b1d35a9e.zip
cpython-c0a053e4d5a73b8493ca3336f0c37835b1d35a9e.tar.gz
cpython-c0a053e4d5a73b8493ca3336f0c37835b1d35a9e.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 eb60274..8687d40 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