Compare commits
2 Commits
njhanley/a
...
edb1a6f9e1
| Author | SHA1 | Date | |
|---|---|---|---|
| edb1a6f9e1 | |||
|
|
33723db314 |
@@ -746,7 +746,7 @@ QtObject {
|
||||
|
||||
loadCustomProfiles()
|
||||
|
||||
var profileArgPosition = args.indexOf(/-p|--profile/)
|
||||
var profileArgPosition = args.indexOf("--profile")
|
||||
if (profileArgPosition !== -1) {
|
||||
var profileIndex = getProfileIndexByName(
|
||||
args[profileArgPosition + 1])
|
||||
|
||||
@@ -58,6 +58,13 @@ Item{
|
||||
kterminal.pasteClipboard()
|
||||
}
|
||||
}
|
||||
Connections {
|
||||
target: pasteActionAlt
|
||||
|
||||
onTriggered: {
|
||||
kterminal.pasteSelection()
|
||||
}
|
||||
}
|
||||
|
||||
//When settings are updated sources need to be redrawn.
|
||||
Connections {
|
||||
|
||||
@@ -116,6 +116,11 @@ ApplicationWindow {
|
||||
text: qsTr("Paste")
|
||||
shortcut: "Ctrl+Shift+V"
|
||||
}
|
||||
Action {
|
||||
id: pasteActionAlt
|
||||
text: qsTr("Paste selection")
|
||||
shortcut: "Shift+Insert"
|
||||
}
|
||||
Action {
|
||||
id: zoomIn
|
||||
text: qsTr("Zoom In")
|
||||
|
||||
Reference in New Issue
Block a user