aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2021-06-10 11:05:01 -0500
committerluigi1111 <luigi1111w@gmail.com>2021-06-10 11:05:01 -0500
commit3621ab334444500f482917e604148fd0650807ca (patch)
treed5d94659abdfc4734cc906032659484fbff9ccb3 /components
parent4850e13895bd02ebee785aa0071624b36678df8d (diff)
parentb825f6e1bd085cf81ae01b796d9418c4bcdbbe29 (diff)
downloadmonzero-gui-3621ab334444500f482917e604148fd0650807ca.tar.gz
monzero-gui-3621ab334444500f482917e604148fd0650807ca.tar.xz
monzero-gui-3621ab334444500f482917e604148fd0650807ca.zip
Merge pull request #3539
b825f6e StandardDropdown: add FontAwesome fallback icons (rating89us)
Diffstat (limited to 'components')
-rw-r--r--components/StandardDropdown.qml16
1 files changed, 7 insertions, 9 deletions
diff --git a/components/StandardDropdown.qml b/components/StandardDropdown.qml
index dfe37a5d..d361ff39 100644
--- a/components/StandardDropdown.qml
+++ b/components/StandardDropdown.qml
@@ -29,6 +29,7 @@
import QtQuick 2.9
import QtQuick.Controls 2.2
import QtGraphicalEffects 1.0
+import FontAwesome 1.0
import "../components" as MoneroComponents
import "../components/effects/" as MoneroEffects
@@ -96,19 +97,16 @@ Item {
anchors.rightMargin: 12
width: dropdownIcon.width
- Image {
+ MoneroEffects.ImageMask {
id: dropdownIcon
anchors.centerIn: parent
- source: "qrc:///images/whiteDropIndicator.png"
- visible: false
- }
-
- ColorOverlay {
- source: dropdownIcon
- anchors.fill: dropdownIcon
+ image: "qrc:///images/whiteDropIndicator.png"
+ height: 8
+ width: 12
+ fontAwesomeFallbackIcon: FontAwesome.arrowDown
+ fontAwesomeFallbackSize: 14
color: MoneroComponents.Style.defaultFontColor
rotation: dropdown.expanded ? 180 : 0
- opacity: 1
}
}