summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/ReplaceDialog.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-04-04 02:35:12 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-04-04 02:35:12 (GMT)
commitcf658c283346497106952bba9bc5c49fbab22ac0 (patch)
tree9fe97657f303fcd0a934ccc9126984aee67c1bed /Lib/idlelib/ReplaceDialog.py
parent0f38908684505905fd0890f4effbe6f683b39954 (diff)
downloadcpython-cf658c283346497106952bba9bc5c49fbab22ac0.zip
cpython-cf658c283346497106952bba9bc5c49fbab22ac0.tar.gz
cpython-cf658c283346497106952bba9bc5c49fbab22ac0.tar.bz2
close search and replace dialog after it is used (closes #17625)
Diffstat (limited to 'Lib/idlelib/ReplaceDialog.py')
-rw-r--r--Lib/idlelib/ReplaceDialog.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/idlelib/ReplaceDialog.py b/Lib/idlelib/ReplaceDialog.py
index e5a1371..e73f2c5 100644
--- a/Lib/idlelib/ReplaceDialog.py
+++ b/Lib/idlelib/ReplaceDialog.py
@@ -123,6 +123,7 @@ class ReplaceDialog(SearchDialogBase):
text.undo_block_stop()
if first and last:
self.show_hit(first, last)
+ self.close()
def do_find(self, ok=0):
if not self.engine.getprog():