Skip to content
GitLab
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
6f79d9f3
Commit
6f79d9f3
authored
Jan 07, 2010
by
dt
Browse files
Change Maximize output pane to Alt+9 matching Alt+number
parent
9c4c7248
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/coreplugin/outputpane.cpp
View file @
6f79d9f3
...
...
@@ -304,7 +304,11 @@ void OutputPaneManager::init()
mpanes
->
addAction
(
cmd
,
"Coreplugin.OutputPane.ActionsGroup"
);
cmd
=
am
->
registerAction
(
m_minMaxAction
,
"Coreplugin.OutputPane.minmax"
,
globalcontext
);
#ifdef Q_WS_MAC
cmd
->
setDefaultKeySequence
(
QKeySequence
(
"Ctrl+9"
));
#else
cmd
->
setDefaultKeySequence
(
QKeySequence
(
"Alt+9"
));
#endif
mpanes
->
addAction
(
cmd
,
"Coreplugin.OutputPane.ActionsGroup"
);
m_minMaxButton
->
setDefaultAction
(
cmd
->
action
());
connect
(
m_minMaxAction
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
slotMinMax
()));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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