Release 0.3-1 (Including all changes)
[marketstoday] / src / qml / Library / MenuBar.qml
index 52384f3..0a083a5 100644 (file)
@@ -1,5 +1,5 @@
 /*
-@version: 0.1
+@version: 0.2
 @author: Sudheer K. <scifi1947 at gmail.com>
 @license: GNU General Public License
 */
@@ -18,18 +18,26 @@ Item {
         id: container
         anchors.fill: parent
 
-        Button {
-            id: buttonTickers
-            text: "Add/Remove Tickers"
-            anchors.right: parent.horizontalCenter; anchors.horizontalCenterOffset: -75; y: 3; width: 150; height: 32
-            onClicked: menuBar.tickersClicked()
-        }
+        Row {
+            spacing: 5
+            height: 50
+            anchors.centerIn: parent
+
+            Button {
+                id: buttonTickers
+                text: "Add/Remove Tickers"
+                fontSize: 14
+                width: 200; height: parent.height
+                onClicked: menuBar.tickersClicked()
+            }
 
-        Button {
-            id: buttonOptions
-            text: "Update Settings"
-            anchors.left: parent.horizontalCenter; anchors.horizontalCenterOffset: 75; y: 3; width: 150; height: 32
-            onClicked: menuBar.optionsClicked()
+            Button {
+                id: buttonOptions
+                text: "Update Settings"
+                fontSize: 14
+                width: 200; height: parent.height
+                onClicked: menuBar.optionsClicked()
+            }
         }
     }
 }