diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-03-24 21:06:12 +0100 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-03-29 23:04:04 +0100 |
| commit | 06bda869e081a874ef6d7fae377970c7a8ace42a (patch) | |
| tree | df084d598d54cac2e2143d8339a21ae5faa1e2d7 /components/InputMulti.qml | |
| parent | c001e312410efe8f883bb5163e5554d84126c034 (diff) | |
| download | monzero-gui-06bda869e081a874ef6d7fae377970c7a8ace42a.tar.gz monzero-gui-06bda869e081a874ef6d7fae377970c7a8ace42a.tar.xz monzero-gui-06bda869e081a874ef6d7fae377970c7a8ace42a.zip | |
font.bold for amount/address/paymentid on the transfer page
Diffstat (limited to 'components/InputMulti.qml')
| -rw-r--r-- | components/InputMulti.qml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/InputMulti.qml b/components/InputMulti.qml index 2839db3a..9917eb52 100644 --- a/components/InputMulti.qml +++ b/components/InputMulti.qml @@ -38,11 +38,12 @@ TextArea { property bool addressValidation: false property bool wrapAnywhere: true property int fontSize: 18 * scaleRatio + property bool fontBold: false id: textArea font.family: Style.fontRegular.name font.pixelSize: fontSize - font.bold: false + font.bold: fontBold horizontalAlignment: TextInput.AlignLeft selectByMouse: true color: Style.defaultFontColor |
