Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Tobias Hunger
qt-creator
Commits
0d6d4207
Commit
0d6d4207
authored
Jan 13, 2011
by
con
Browse files
Make Shift+F5 for interrupting/stopping debugger work again.
parent
c41c4d97
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/debugger/debuggerplugin.cpp
View file @
0d6d4207
...
...
@@ -2867,6 +2867,7 @@ void DebuggerPluginPrivate::extensionsInitialized()
cmd
=
am
->
registerAction
(
m_actions
.
interruptAction
,
Constants
::
INTERRUPT
,
globalcontext
);
cmd
->
setDefaultText
(
tr
(
"Interrupt Debugger"
));
cmd
->
setDefaultKeySequence
(
QKeySequence
(
Constants
::
STOP_KEY
));
debugMenu
->
addAction
(
cmd
,
CC
::
G_DEFAULT_ONE
);
cmd
=
am
->
registerAction
(
m_actions
.
continueAction
,
...
...
@@ -2876,7 +2877,7 @@ void DebuggerPluginPrivate::extensionsInitialized()
cmd
=
am
->
registerAction
(
m_actions
.
exitAction
,
Constants
::
STOP
,
globalcontext
);
//
cmd->setDefaultKeySequence(QKeySequence(Constants::STOP_KEY));
cmd
->
setDefaultKeySequence
(
QKeySequence
(
Constants
::
STOP_KEY
));
cmd
->
setDefaultText
(
tr
(
"Stop Debugger"
));
debugMenu
->
addAction
(
cmd
,
CC
::
G_DEFAULT_ONE
);
...
...
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