diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-02-22 11:30:58 -0600 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-02-22 11:30:58 -0600 |
| commit | c2889c2b8173dda1e4fe50478c8d56ac00f2d255 (patch) | |
| tree | d7ba6e21f470a56d88fbe9be9ed8a7d068910c59 /components/InputMulti.qml | |
| parent | 333f4aaf83bd64de02b07a56d86bbf90363e403b (diff) | |
| parent | c6107d8376244560068184cbfafd38d3b2f536b8 (diff) | |
| download | monzero-gui-c2889c2b8173dda1e4fe50478c8d56ac00f2d255.tar.gz monzero-gui-c2889c2b8173dda1e4fe50478c8d56ac00f2d255.tar.xz monzero-gui-c2889c2b8173dda1e4fe50478c8d56ac00f2d255.zip | |
Merge pull request #1909
f329a71 Wizard redesign (xmrdsc)
c6107d8 wizard: allow calendar date for restoration height (mmbyday)
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 }` |
