Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
391f4696
Commit
391f4696
authored
Jun 10, 2013
by
Roger Serwy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#17511: Keep IDLE find dialog open after clicking "Find Next".
Original patch by Sarah K.
parent
7e303731
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
Lib/idlelib/SearchDialog.py
Lib/idlelib/SearchDialog.py
+2
-3
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/idlelib/SearchDialog.py
View file @
391f4696
...
...
@@ -24,13 +24,12 @@ class SearchDialog(SearchDialogBase):
def
create_widgets
(
self
):
f
=
SearchDialogBase
.
create_widgets
(
self
)
self
.
make_button
(
"Find"
,
self
.
default_command
,
1
)
self
.
make_button
(
"Find
Next
"
,
self
.
default_command
,
1
)
def
default_command
(
self
,
event
=
None
):
if
not
self
.
engine
.
getprog
():
return
if
self
.
find_again
(
self
.
text
):
self
.
close
()
self
.
find_again
(
self
.
text
)
def
find_again
(
self
,
text
):
if
not
self
.
engine
.
getpat
():
...
...
Misc/ACKS
View file @
391f4696
...
...
@@ -606,6 +606,7 @@ John Jorgensen
Sijin Joseph
Andreas Jung
Tattoo Mabonzo K.
Sarah K.
Bohuslav Kabrda
Bob Kahn
Kurt B. Kaiser
...
...
Misc/NEWS
View file @
391f4696
...
...
@@ -81,6 +81,9 @@ Library
IDLE
----
-
Issue
#
17511
:
Keep
IDLE
find
dialog
open
after
clicking
"Find Next"
.
Original
patch
by
Sarah
K
.
-
Issue
#
18055
:
Move
IDLE
off
of
imp
and
on
to
importlib
.
-
Issue
#
15392
:
Create
a
unittest
framework
for
IDLE
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment