aboutsummaryrefslogtreecommitdiff
path: root/components/InputMulti.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-03-19 02:42:46 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:03 +0100
commit57a9508849f36c7cda513df98e478babbc3e6cb3 (patch)
tree53ff925c28f13593fb065bad24c5801e454a1bb6 /components/InputMulti.qml
parent49770494251a318da37849f1c628f25edaf94483 (diff)
downloadmonzero-gui-57a9508849f36c7cda513df98e478babbc3e6cb3.tar.gz
monzero-gui-57a9508849f36c7cda513df98e478babbc3e6cb3.tar.xz
monzero-gui-57a9508849f36c7cda513df98e478babbc3e6cb3.zip
Receive page; modified subaddress table
Diffstat (limited to 'components/InputMulti.qml')
-rw-r--r--components/InputMulti.qml6
1 files changed, 4 insertions, 2 deletions
diff --git a/components/InputMulti.qml b/components/InputMulti.qml
index 2df797e2..f809ca10 100644
--- a/components/InputMulti.qml
+++ b/components/InputMulti.qml
@@ -36,13 +36,15 @@ TextArea {
property bool error: false
property bool addressValidation: false
property bool wrapAnywhere: true
+ property int fontSize: 18 * scaleRatio
id: textArea
- font.family: Style.fontRegular.name
- font.pixelSize: 18 * scaleRatio
+ font.family: Style.fontRegular
+ font.pixelSize: fontSize
font.bold: false
horizontalAlignment: TextInput.AlignLeft
selectByMouse: true
color: Style.defaultFontColor
+
wrapMode: {
if(wrapAnywhere){
return Text.WrapAnywhere;