tabs -> spaces

This commit is contained in:
Adam Mathes 2019-02-09 20:25:36 -08:00
parent 88f59d2016
commit aa82250232

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")