diff options
| author | selsta <selsta@sent.at> | 2019-04-23 23:21:47 +0200 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2019-04-23 23:21:47 +0200 |
| commit | 04d0b141521bc7189a34657c7bb070915eb7ce22 (patch) | |
| tree | f5181d873c8e84a3c1f8140b760631d69138ded7 /components | |
| parent | 358e1d23facbd10fefbb2bf04c45b98f0c728ad0 (diff) | |
| download | monzero-gui-04d0b141521bc7189a34657c7bb070915eb7ce22.tar.gz monzero-gui-04d0b141521bc7189a34657c7bb070915eb7ce22.tar.xz monzero-gui-04d0b141521bc7189a34657c7bb070915eb7ce22.zip | |
InlineButton: fix warning and set font
Diffstat (limited to 'components')
| -rw-r--r-- | components/InlineButton.qml | 2 | ||||
| -rw-r--r-- | components/LineEditMulti.qml | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/components/InlineButton.qml b/components/InlineButton.qml index 4741a701..d949ac96 100644 --- a/components/InlineButton.qml +++ b/components/InlineButton.qml @@ -49,7 +49,7 @@ Item { property int rectHMargin: small ? 16 * scaleRatio : 22 * scaleRatio property alias text: inlineText.text property alias fontPixelSize: inlineText.font.pixelSize - property alias fontFamily: inlineText.font + property alias fontFamily: inlineText.font.family property alias buttonColor: rect.color signal clicked() diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml index 3689ad39..71e27c1d 100644 --- a/components/LineEditMulti.qml +++ b/components/LineEditMulti.qml @@ -201,7 +201,6 @@ ColumnLayout { visible: (inlineButtonId.text || inlineButtonId.icon) && inlineButtonVisible ? true : false anchors.right: parent.right anchors.rightMargin: 8 * scaleRatio - anchors.verticalCenter: parent.verticalCenter } } } |
