Fix: Icon transparency.

This commit is contained in:
Keyitdev
2024-04-04 11:05:56 +02:00
parent 0b964755cc
commit 4a38840903
2 changed files with 11 additions and 4 deletions
+8 -3
View File
@@ -69,16 +69,21 @@ Column {
indicator: Button {
id: usernameIcon
width: selectUser.height * 0.8
width: selectUser.height * 1
height: parent.height
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
anchors.leftMargin: selectUser.height * 0.125
anchors.leftMargin: selectUser.height * 0
icon.height: parent.height * 0.25
icon.width: parent.height * 0.25
enabled: false
icon.color: root.palette.text
icon.source: Qt.resolvedUrl("../Assets/User.svg")
background: Rectangle {
color: "transparent"
border.color: "transparent"
}
}
background: Rectangle {
@@ -557,4 +562,4 @@ Column {
onTriggered: failed = false
running: false
}
}
}