From: Benjamin Peterson Date: Thu, 4 Apr 2013 02:35:12 +0000 (-0400) Subject: close search and replace dialog after it is used (closes #17625) X-Git-Tag: v3.3.1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38546ee51cadc924bb4a8f703d1891adef3c6829;p=thirdparty%2FPython%2Fcpython.git close search and replace dialog after it is used (closes #17625) --- diff --git a/Lib/idlelib/ReplaceDialog.py b/Lib/idlelib/ReplaceDialog.py index e5a13713882a..e73f2c503965 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(): diff --git a/Misc/NEWS b/Misc/NEWS index b0ea32dcab92..59308583949a 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,11 @@ Build - Issue #17550: Fix the --enable-profiling configure switch. +Library +------- + +- Issue #17625: In IDLE, close the replace dialog after it is used. + What's New in Python 3.3.1 release candidate 1? ===============================================