aboutsummaryrefslogtreecommitdiff
path: root/components/LineEdit.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-01-28 00:14:42 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:03 +0100
commit49770494251a318da37849f1c628f25edaf94483 (patch)
tree59102bc024ced24aa836ae392f3a98712a09e461 /components/LineEdit.qml
parent53b5b7a5c7a7894c04bdedad345f733be1dd34b7 (diff)
downloadmonzero-gui-49770494251a318da37849f1c628f25edaf94483.tar.gz
monzero-gui-49770494251a318da37849f1c628f25edaf94483.tar.xz
monzero-gui-49770494251a318da37849f1c628f25edaf94483.zip
Fixes some fonts, introduces a new checkbox and fixes 0 amount history entries
Diffstat (limited to 'components/LineEdit.qml')
-rw-r--r--components/LineEdit.qml11
1 files changed, 5 insertions, 6 deletions
diff --git a/components/LineEdit.qml b/components/LineEdit.qml
index 330e3bba..f488790d 100644
--- a/components/LineEdit.qml
+++ b/components/LineEdit.qml
@@ -53,17 +53,16 @@ Item {
property bool borderDisabled: false
property int fontSize: 18 * scaleRatio
property bool showBorder: true
- property bool fontBold: true
+ property bool fontBold: false
property alias fontColor: input.color
property bool error: false
property alias labelText: inputLabel.text
property alias labelColor: inputLabel.color
property alias labelTextFormat: inputLabel.textFormat
- property string labelFontFamily: Style.fontRegular.name
property string backgroundColor: "transparent"
property string tipText: ""
property int labelFontSize: 14 * scaleRatio
- property bool labelFontBold: true
+ property bool labelFontBold: false
property alias labelWrapMode: inputLabel.wrapMode
property alias labelHorizontalAlignment: inputLabel.horizontalAlignment
property bool showingHeader: inputLabel.text !== "" || copyButton
@@ -100,7 +99,7 @@ Item {
anchors.top: parent.top
anchors.left: parent.left
anchors.topMargin: 2 * scaleRatio
- font.family: labelFontFamily
+ font.family: Style.fontLight
font.pixelSize: labelFontSize
font.bold: labelFontBold
textFormat: Text.RichText
@@ -132,7 +131,7 @@ Item {
id: inputItem
height: inputHeight * scaleRatio
anchors.top: showingHeader ? inputLabel.bottom : parent.top
- anchors.topMargin: showingHeader ? 6 * scaleRatio : 2
+ anchors.topMargin: showingHeader ? 12 * scaleRatio : 2
width: parent.width
Text {
@@ -189,7 +188,7 @@ Item {
anchors.fill: parent
anchors.leftMargin: inlineIcon.visible ? 38 : 0
font.pixelSize: item.fontSize
- font.bold: fontBold
+ font.bold: item.fontBold
onEditingFinished: item.editingFinished()
onAccepted: item.accepted();
onTextChanged: item.textUpdated()