Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
fca3daf6
Commit
fca3daf6
authored
8 years ago
by
Vassiliy.Kudryashov
Browse files
Options
Download
Email Patches
Plain Diff
IDEA-139688 Shortcut for terminating (CMD+F2 on mac) multiple runs doesn't work
parent
67195921
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
platform/lang-impl/src/com/intellij/execution/actions/StopAction.java
+4
-2
...g-impl/src/com/intellij/execution/actions/StopAction.java
with
4 additions
and
2 deletions
+4
-2
platform/lang-impl/src/com/intellij/execution/actions/StopAction.java
+
4
-
2
View file @
fca3daf6
...
...
@@ -165,8 +165,10 @@ class StopAction extends DumbAwareAction implements AnAction.TransparentUpdate {
.
setTitle
(
handlerItems
.
first
.
size
()
==
1
?
"Confirm process stop"
:
"Stop process"
)
.
setFilteringEnabled
(
o
->
((
HandlerItem
)
o
).
displayName
)
.
setItemChoosenCallback
(()
->
{
HandlerItem
item
=
(
HandlerItem
)
list
.
getSelectedValue
();
if
(
item
!=
null
)
item
.
stop
();
List
valuesList
=
list
.
getSelectedValuesList
();
for
(
Object
o
:
valuesList
)
{
if
(
o
instanceof
HandlerItem
)
((
HandlerItem
)
o
).
stop
();
}
})
.
setRequestFocus
(
true
)
.
createPopup
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
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
Menu
Projects
Groups
Snippets
Help