diff options
| author | Matthias Tarasiewicz <parasew@gmail.com> | 2017-03-25 17:22:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-25 17:22:13 +0100 |
| commit | 0836bd9cfd0c1ec2918b50d703ee84d9700a0969 (patch) | |
| tree | f42099f728a988942bacab1014505e67ce7d26d3 /components/CheckBox.qml | |
| parent | 6e381c38578ab130a9991189887ba68397e2bfad (diff) | |
| parent | 12573652a0a5836938b02a2308098929fdf06ab4 (diff) | |
| download | monzero-gui-0836bd9cfd0c1ec2918b50d703ee84d9700a0969.tar.gz monzero-gui-0836bd9cfd0c1ec2918b50d703ee84d9700a0969.tar.xz monzero-gui-0836bd9cfd0c1ec2918b50d703ee84d9700a0969.zip | |
Merge branch 'master' into patch-1
Diffstat (limited to 'components/CheckBox.qml')
| -rw-r--r-- | components/CheckBox.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/CheckBox.qml b/components/CheckBox.qml index 8df364d1..ffe585c3 100644 --- a/components/CheckBox.qml +++ b/components/CheckBox.qml @@ -27,6 +27,7 @@ // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import QtQuick 2.0 +import QtQuick.Layouts 1.1 Item { id: checkBox @@ -40,6 +41,7 @@ Item { signal clicked() height: 25 width: label.x + label.width + Layout.minimumWidth: label.x + label.contentWidth clip: true Rectangle { @@ -74,7 +76,6 @@ Item { anchors.leftMargin: 25 + 12 font.family: "Arial" font.pixelSize: checkBox.fontSize - font.letterSpacing: -1 color: "#525252" } |
