Multiple terminal support on MacOS #507
| @@ -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") | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user