Multiple terminal support on MacOS #507

Closed
adammathes wants to merge 13 commits from adammathes/master into master
Showing only changes of commit aa82250232 - Show all commits

View File

@ -68,21 +68,21 @@ ApplicationWindow{
title: terminalContainer.title || qsTr(appSettings.wintitle) title: terminalContainer.title || qsTr(appSettings.wintitle)
Action { Action {
id: newAction id: newAction
text: qsTr("New Window") text: qsTr("New Window")
shortcut: Qt.platform.os === "osx" ? StandardKey.New : "Ctrl+Shift+N" shortcut: Qt.platform.os === "osx" ? StandardKey.New : "Ctrl+Shift+N"
onTriggered: { onTriggered: {
root.newWindow() root.newWindow()
} }
} }
Action { Action {
id: closeAction id: closeAction
text: qsTr("Close Window") text: qsTr("Close Window")
shortcut: Qt.platform.os === "osx" ? StandardKey.Close : "Ctrl+Shift+W" shortcut: Qt.platform.os === "osx" ? StandardKey.Close : "Ctrl+Shift+W"
onTriggered: { onTriggered: {
terminalWindow.close() terminalWindow.close()
} }
} }
Action { Action {
id: showMenubarAction id: showMenubarAction
text: qsTr("Show Menubar") text: qsTr("Show Menubar")