Initial ui reimplementation. Still in its early phase.
[harmattan/cameraplus] / qml / SectionHeader.qml
index ec7c784..ae39e4d 100644 (file)
@@ -24,25 +24,25 @@ import QtQuick 1.1
 import com.nokia.meego 1.1
 
 Row {
-        id: root
+    id: root
 
-        anchors.left: parent.left
-        anchors.right: parent.right
-        anchors.leftMargin: 10
-        anchors.rightMargin: 10
-        spacing: 10
+    anchors.left: parent.left
+    anchors.right: parent.right
+    anchors.leftMargin: 10
+    anchors.rightMargin: 10
+    spacing: 10
 
-        property alias text: label.text
+    property alias text: label.text
 
-        Label {
-                id: label
-                verticalAlignment: Text.AlignVCenter
-        }
+    Label {
+        id: label
+        verticalAlignment: Text.AlignVCenter
+    }
 
-        Rectangle {
-                color: "darkgray"
-                height: 2
-                width: parent.width - label.width - 20
-                anchors.verticalCenter: parent.verticalCenter
-        }
+    Rectangle {
+        color: "darkgray"
+        height: 2
+        width: parent.width - label.width - 20
+        anchors.verticalCenter: parent.verticalCenter
+    }
 }