]> granicus.if.org Git - python/commitdiff
close search and replace dialog after it is used (closes #17625)
authorBenjamin Peterson <benjamin@python.org>
Thu, 4 Apr 2013 02:35:12 +0000 (22:35 -0400)
committerBenjamin Peterson <benjamin@python.org>
Thu, 4 Apr 2013 02:35:12 +0000 (22:35 -0400)
Lib/idlelib/ReplaceDialog.py
Misc/NEWS

index e5a13713882a5957e800abd38f53ff36f7ec0ffa..e73f2c50396505b91301d337e620d781034051a6 100644 (file)
@@ -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():
index 9775a8a2da302e949aac798ad325c6570a5136fc..cfa80627f4601457a89be45eef04edb0ad9c9195 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,17 @@
 Python News
 +++++++++++
 
+What's New in Python 3.2.4?
+===========================
+
+*Release date: XX-Apr-2013*
+
+Library
+-------
+
+- Issue #17625: In IDLE, close the replace dialog after it is used.
+
+
 What's New in Python 3.2.4 release candidate 1?
 ===============================================