From aa82250232e542e990585644c3e9f5ca44ae15f8 Mon Sep 17 00:00:00 2001
From: Adam Mathes <adam@trenchant.org>
Date: Sat, 9 Feb 2019 20:25:36 -0800
Subject: [PATCH] tabs -> spaces

---
 app/qml/main.qml | 30 +++++++++++++++---------------
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/app/qml/main.qml b/app/qml/main.qml
index 08257d3..267f405 100644
--- a/app/qml/main.qml
+++ b/app/qml/main.qml
@@ -68,21 +68,21 @@ ApplicationWindow{
     title: terminalContainer.title || qsTr(appSettings.wintitle)
 
 	Action {
-		id: newAction
-		text: qsTr("New Window")
-		shortcut: Qt.platform.os === "osx" ? StandardKey.New : "Ctrl+Shift+N"
-		onTriggered: {
-			root.newWindow()
-		}
-	}
-	Action {
-		id: closeAction
-		text: qsTr("Close Window")
-		shortcut: Qt.platform.os === "osx" ? StandardKey.Close : "Ctrl+Shift+W"
-		onTriggered: {
-			terminalWindow.close()
-		}
-	}
+        id: newAction
+        text: qsTr("New Window")
+        shortcut: Qt.platform.os === "osx" ? StandardKey.New : "Ctrl+Shift+N"
+        onTriggered: {
+            root.newWindow()
+        }
+    }
+    Action {
+        id: closeAction
+        text: qsTr("Close Window")
+        shortcut: Qt.platform.os === "osx" ? StandardKey.Close : "Ctrl+Shift+W"
+        onTriggered: {
+            terminalWindow.close()
+        }
+    }
     Action {
         id: showMenubarAction
         text: qsTr("Show Menubar")