Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7684fa8

Browse files
committed
close search and replace dialog after it is used (closes #17625)
1 parent ef0faa5 commit 7684fa8

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

Lib/idlelib/ReplaceDialog.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ def replace_all(self, event=None):
123123
text.undo_block_stop()
124124
if first and last:
125125
self.show_hit(first, last)
126+
self.close()
126127

127128
def do_find(self, ok=0):
128129
if not self.engine.getprog():

Misc/NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Python News
33
+++++++++++
44

5+
What's New in Python 3.2.4?
6+
===========================
7+
8+
*Release date: XX-Apr-2013*
9+
10+
Library
11+
-------
12+
13+
- Issue #17625: In IDLE, close the replace dialog after it is used.
14+
15+
516
What's New in Python 3.2.4 release candidate 1?
617
===============================================
718

0 commit comments

Comments
 (0)