Changed the dimensions for buttons to 56x56 instead of 64x64
authorMohammed Sameer <msameer@foolab.org>
Sat, 1 Sep 2012 16:57:04 +0000 (19:57 +0300)
committerMohammed Sameer <msameer@foolab.org>
Sat, 1 Sep 2012 16:57:04 +0000 (19:57 +0300)
qml/CheckButton.qml
qml/Selector.qml
qml/VideoTorchButton.qml

index 0864f1e..8cef2fc 100644 (file)
@@ -10,8 +10,8 @@ Button {
         property QtObject fader: null
         property int value: -1
 
-        width: visible ? 64 : 0
-        height: visible ? 64 : 0
+        width: visible ? 56 : 0
+        height: visible ? 56 : 0
         iconSource: !visible ? "" : controller.value == value ? checkedIcon : normalIcon
         onClicked: { controller.value = value; close(); }
 }
index aa95a17..b871b05 100644 (file)
@@ -5,8 +5,8 @@ import QtCamera 1.0
 
 Button {
         id: button
-        width: 64
-        height: 64
+        width: 56
+        height: 56
 
         opacity: 0.5
 
index 3d890c3..07e0688 100644 (file)
@@ -5,8 +5,8 @@ import QtCamera 1.0
 
 Button {
         id: button
-        width: 64
-        height: 64
+        width: 56
+        height: 56
         opacity: 0.5
 
         iconSource: torch.on ? "/usr/share/themes/blanco/meegotouch/icons/icon-m-camera-torch-on.png" : "/usr/share/themes/blanco/meegotouch/icons/icon-m-camera-torch-off.png"