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
Utilities
Konsole
Commits
19ea9ed2
Commit
19ea9ed2
authored
Oct 03, 2022
by
Tomaz Canabrava
Browse files
Qt6 Fixes
parent
61cec157
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/plugins/QuickCommands/quickcommandsplugin.cpp
View file @
19ea9ed2
...
...
@@ -72,7 +72,7 @@ void QuickCommandsPlugin::activeViewChanged(Konsole::SessionController *controll
settings
.
beginGroup
(
QStringLiteral
(
"plugins"
));
settings
.
beginGroup
(
QStringLiteral
(
"quickcommands"
));
const
QKeySequence
def
(
Qt
::
CTRL
+
Qt
::
ALT
+
Qt
::
Key_G
);
const
QKeySequence
def
(
Qt
::
CTRL
|
Qt
::
ALT
|
Qt
::
Key_G
);
const
QString
defText
=
def
.
toString
();
const
QString
entry
=
settings
.
value
(
QStringLiteral
(
"shortcut"
),
defText
).
toString
();
const
QKeySequence
shortcutEntry
(
entry
);
...
...
src/plugins/SSHManager/sshmanagerplugin.cpp
View file @
19ea9ed2
...
...
@@ -114,7 +114,7 @@ void SSHManagerPlugin::activeViewChanged(Konsole::SessionController *controller,
settings
.
beginGroup
(
QStringLiteral
(
"plugins"
));
settings
.
beginGroup
(
QStringLiteral
(
"sshplugin"
));
const
QKeySequence
def
(
Qt
::
CTRL
+
Qt
::
ALT
+
Qt
::
Key_H
);
const
QKeySequence
def
(
Qt
::
CTRL
|
Qt
::
ALT
|
Qt
::
Key_H
);
const
QString
defText
=
def
.
toString
();
const
QString
entry
=
settings
.
value
(
QStringLiteral
(
"ssh_shortcut"
),
defText
).
toString
();
const
QKeySequence
shortcutEntry
(
entry
);
...
...
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