mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-02-21 20:39:00 +00:00
Fix 61 . Removed Alt based combinations.
This commit is contained in:
parent
be0ccfa1ba
commit
064e967810
14
app/main.qml
14
app/main.qml
@ -49,7 +49,7 @@ ApplicationWindow{
|
|||||||
}
|
}
|
||||||
Action {
|
Action {
|
||||||
id: fullscreenAction
|
id: fullscreenAction
|
||||||
text: qsTr("&Fullscreen")
|
text: qsTr("Fullscreen")
|
||||||
shortcut: "Alt+F11"
|
shortcut: "Alt+F11"
|
||||||
onTriggered: shadersettings.fullscreen = !shadersettings.fullscreen;
|
onTriggered: shadersettings.fullscreen = !shadersettings.fullscreen;
|
||||||
checkable: true
|
checkable: true
|
||||||
@ -57,30 +57,30 @@ ApplicationWindow{
|
|||||||
}
|
}
|
||||||
Action {
|
Action {
|
||||||
id: quitAction
|
id: quitAction
|
||||||
text: qsTr("&Quit")
|
text: qsTr("Quit")
|
||||||
shortcut: "Ctrl+Shift+Q"
|
shortcut: "Ctrl+Shift+Q"
|
||||||
onTriggered: terminalWindow.close();
|
onTriggered: terminalWindow.close();
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: showsettingsAction
|
id: showsettingsAction
|
||||||
text: qsTr("&Settings")
|
text: qsTr("Settings")
|
||||||
onTriggered: settingswindow.show();
|
onTriggered: settingswindow.show();
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: copyAction
|
id: copyAction
|
||||||
text: qsTr("&Copy")
|
text: qsTr("Copy")
|
||||||
shortcut: "Ctrl+Shift+C"
|
shortcut: "Ctrl+Shift+C"
|
||||||
onTriggered: terminal.copyClipboard()
|
onTriggered: terminal.copyClipboard()
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: pasteAction
|
id: pasteAction
|
||||||
text: qsTr("&Paste")
|
text: qsTr("Paste")
|
||||||
shortcut: "Ctrl+Shift+V"
|
shortcut: "Ctrl+Shift+V"
|
||||||
onTriggered: terminal.pasteClipboard()
|
onTriggered: terminal.pasteClipboard()
|
||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: zoomIn
|
id: zoomIn
|
||||||
text: qsTr("&Zoom In")
|
text: qsTr("Zoom In")
|
||||||
shortcut: "Ctrl++"
|
shortcut: "Ctrl++"
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
var oldScaling = shadersettings.fontScalingIndexes[shadersettings.rasterization];
|
var oldScaling = shadersettings.fontScalingIndexes[shadersettings.rasterization];
|
||||||
@ -90,7 +90,7 @@ ApplicationWindow{
|
|||||||
}
|
}
|
||||||
Action{
|
Action{
|
||||||
id: zoomOut
|
id: zoomOut
|
||||||
text: qsTr("&Zoom Out")
|
text: qsTr("Zoom Out")
|
||||||
shortcut: "Ctrl+-"
|
shortcut: "Ctrl+-"
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
var oldScaling = shadersettings.fontScalingIndexes[shadersettings.rasterization];
|
var oldScaling = shadersettings.fontScalingIndexes[shadersettings.rasterization];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user