aboutsummaryrefslogtreecommitdiff
path: root/components/CheckBox.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2017-12-10 23:38:21 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:02 +0100
commit5a36aa7fce21a72328f2d615e6cb339e4c51a755 (patch)
tree152dcfd39b21c5d87a3a2a13c225d6cf051e11ea /components/CheckBox.qml
parentf262ce520978fa406e6531ffc9a8464a14a3a722 (diff)
downloadmonzero-gui-5a36aa7fce21a72328f2d615e6cb339e4c51a755.tar.gz
monzero-gui-5a36aa7fce21a72328f2d615e6cb339e4c51a755.tar.xz
monzero-gui-5a36aa7fce21a72328f2d615e6cb339e4c51a755.zip
Change default font color / family for checkboxes
Diffstat (limited to 'components/CheckBox.qml')
-rw-r--r--components/CheckBox.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/CheckBox.qml b/components/CheckBox.qml
index f0b8ed9c..fce53ad7 100644
--- a/components/CheckBox.qml
+++ b/components/CheckBox.qml
@@ -28,6 +28,7 @@
import QtQuick 2.0
import QtQuick.Layouts 1.1
+import "." 1.0
RowLayout {
id: checkBox
@@ -83,9 +84,9 @@ RowLayout {
Text {
id: label
- font.family: "Arial"
+ font.family: Style.fontRegular.name
font.pixelSize: checkBox.fontSize
- color: "#525252"
+ color: Style.defaultFontColor
wrapMode: Text.Wrap
Layout.fillWidth: true
anchors.left: backgroundRect.right