diff options
Diffstat (limited to 'components/InputMulti.qml')
| -rw-r--r-- | components/InputMulti.qml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/InputMulti.qml b/components/InputMulti.qml index 8712a69c..e497e18b 100644 --- a/components/InputMulti.qml +++ b/components/InputMulti.qml @@ -51,6 +51,9 @@ TextArea { selectionColor: MoneroComponents.Style.dimmedFontColor selectedTextColor: MoneroComponents.Style.defaultFontColor + property int minimumHeight: 100 * scaleRatio + height: contentHeight > minimumHeight ? contentHeight : minimumHeight + onTextChanged: { if(addressValidation){ // js replacement for `RegExpValidator { regExp: /[0-9A-Fa-f]{95}/g }` |
