Compare commits
4 Commits
njhanley/a
...
d9e41c27ef
| Author | SHA1 | Date | |
|---|---|---|---|
| d9e41c27ef | |||
| 8e8f8e4706 | |||
| edb1a6f9e1 | |||
|
|
33723db314 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -48,3 +48,6 @@ cool-retro-term
|
|||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*.app
|
*.app
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
.idea
|
||||||
|
|||||||
@@ -58,6 +58,13 @@ Item{
|
|||||||
kterminal.pasteClipboard()
|
kterminal.pasteClipboard()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Connections {
|
||||||
|
target: pasteActionAlt
|
||||||
|
|
||||||
|
onTriggered: {
|
||||||
|
kterminal.pasteSelection()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//When settings are updated sources need to be redrawn.
|
//When settings are updated sources need to be redrawn.
|
||||||
Connections {
|
Connections {
|
||||||
|
|||||||
@@ -116,6 +116,11 @@ ApplicationWindow {
|
|||||||
text: qsTr("Paste")
|
text: qsTr("Paste")
|
||||||
shortcut: "Ctrl+Shift+V"
|
shortcut: "Ctrl+Shift+V"
|
||||||
}
|
}
|
||||||
|
Action {
|
||||||
|
id: pasteActionAlt
|
||||||
|
text: qsTr("Paste selection")
|
||||||
|
shortcut: "Shift+Insert"
|
||||||
|
}
|
||||||
Action {
|
Action {
|
||||||
id: zoomIn
|
id: zoomIn
|
||||||
text: qsTr("Zoom In")
|
text: qsTr("Zoom In")
|
||||||
|
|||||||
Reference in New Issue
Block a user