diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:10:49 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-01 15:10:49 -0500 |
| commit | 1833c16e39de7758bbbcf52e2d4ff63f64b25cd7 (patch) | |
| tree | 5a000a3a8433b7651023f240494c00f3cae06c29 /components | |
| parent | d7207bfde39ee81a0ec4928b6547a01b41140a57 (diff) | |
| parent | be954cc2c43c5a7634307a8974cb5cf09bcc26b9 (diff) | |
| download | monzero-gui-1833c16e39de7758bbbcf52e2d4ff63f64b25cd7.tar.gz monzero-gui-1833c16e39de7758bbbcf52e2d4ff63f64b25cd7.tar.xz monzero-gui-1833c16e39de7758bbbcf52e2d4ff63f64b25cd7.zip | |
Merge pull request #2785
be954cc StandardDropdown: fix margins, text overlapping (xiphon)
Diffstat (limited to 'components')
| -rw-r--r-- | components/StandardDropdown.qml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/components/StandardDropdown.qml b/components/StandardDropdown.qml index 8d13c2f3..ad7da891 100644 --- a/components/StandardDropdown.qml +++ b/components/StandardDropdown.qml @@ -84,6 +84,8 @@ Item { anchors.verticalCenter: parent.verticalCenter anchors.left: parent.left anchors.leftMargin: 12 + anchors.right: dropIndicator.left + anchors.rightMargin: 12 elide: Text.ElideRight font.family: MoneroComponents.Style.fontRegular.name font.bold: dropdown.headerFontBold @@ -96,7 +98,8 @@ Item { anchors.top: parent.top anchors.bottom: parent.bottom anchors.right: parent.right - width: 32 + anchors.rightMargin: 12 + width: dropdownIcon.width Image { id: dropdownIcon |
