diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 15:27:19 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-25 15:27:19 -0500 |
| commit | b0ba2379f4c657999510b054a22cb5c906e71e8a (patch) | |
| tree | 5d5c4d35786fb65052784fe6a70e3d08dac2eb01 /components/InputMulti.qml | |
| parent | 5887f87677b40b70b689e20056a57957157ed481 (diff) | |
| parent | 62285b01dc77ef14e4b5b9cc291e34162321ad89 (diff) | |
| download | monzero-gui-b0ba2379f4c657999510b054a22cb5c906e71e8a.tar.gz monzero-gui-b0ba2379f4c657999510b054a22cb5c906e71e8a.tar.xz monzero-gui-b0ba2379f4c657999510b054a22cb5c906e71e8a.zip | |
Merge pull request #2069
62285b0 Remove scaleRatio (xmrdsc)
Diffstat (limited to 'components/InputMulti.qml')
| -rw-r--r-- | components/InputMulti.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/InputMulti.qml b/components/InputMulti.qml index 4fea31c4..891bdc4f 100644 --- a/components/InputMulti.qml +++ b/components/InputMulti.qml @@ -33,7 +33,7 @@ import "../js/TxUtils.js" as TxUtils import "../components" as MoneroComponents TextArea { - property int fontSize: 18 * scaleRatio + property int fontSize: 18 property bool fontBold: false property string fontColor: MoneroComponents.Style.defaultFontColor @@ -51,7 +51,7 @@ TextArea { selectionColor: MoneroComponents.Style.textSelectionColor selectedTextColor: MoneroComponents.Style.textSelectedColor - property int minimumHeight: 100 * scaleRatio + property int minimumHeight: 100 height: contentHeight > minimumHeight ? contentHeight : minimumHeight onTextChanged: { |
