* New icons
[ubi] / qml / ubi / components / Line.qml
index f828154..f97c455 100644 (file)
@@ -4,10 +4,35 @@ import "../UIConstants.js" as Const
 Item {
     id: root
     height: 10
-    Rectangle {
-        color: Const.DEFAULT_FOREGROUND_COLOR
-        height: 2
-        width: root.width
+
+    Row {
         anchors.bottom: root.bottom
+        width: root.width
+        spacing: 5
+        Repeater {
+            model: root.width/6
+            Rectangle {
+                color: Const.DEFAULT_FOREGROUND_COLOR
+                height: 2
+                width: 1
+            }
+        }
     }
+
+    /*Rectangle {
+        y:0
+        color: "black"
+        height: 1
+        width: root.width
+        opacity: 0.5
+        //anchors.bottom: root.bottom
+    }
+    Rectangle {
+        y:3
+        color: "black"
+        height: 1
+        width: root.width
+        opacity: 0.2
+        //anchors.bottom: root.bottom
+    }*/
 }