From: Mohammed Sameer Date: Sat, 1 Sep 2012 16:57:04 +0000 (+0300) Subject: Changed the dimensions for buttons to 56x56 instead of 64x64 X-Git-Url: http://cgit.sxemacs.org/?a=commitdiff_plain;h=05e21701ebc9bca101848eea51f454989900dd96;p=harmattan%2Fcameraplus Changed the dimensions for buttons to 56x56 instead of 64x64 --- diff --git a/qml/CheckButton.qml b/qml/CheckButton.qml index 0864f1e..8cef2fc 100644 --- a/qml/CheckButton.qml +++ b/qml/CheckButton.qml @@ -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(); } } diff --git a/qml/Selector.qml b/qml/Selector.qml index aa95a17..b871b05 100644 --- a/qml/Selector.qml +++ b/qml/Selector.qml @@ -5,8 +5,8 @@ import QtCamera 1.0 Button { id: button - width: 64 - height: 64 + width: 56 + height: 56 opacity: 0.5 diff --git a/qml/VideoTorchButton.qml b/qml/VideoTorchButton.qml index 3d890c3..07e0688 100644 --- a/qml/VideoTorchButton.qml +++ b/qml/VideoTorchButton.qml @@ -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"