[#2550] Fixed wrong color in key icon
Key icon color was wrong at the community welcome message Closes #2550
This commit is contained in:
parent
abf89fa399
commit
9ee7079744
|
@ -1,4 +1,5 @@
|
|||
import QtQuick 2.13
|
||||
import QtGraphicalEffects 1.13
|
||||
import "../../../../shared"
|
||||
import "../../../../shared/status"
|
||||
import "../../../../imports"
|
||||
|
@ -31,6 +32,11 @@ Rectangle {
|
|||
source: "../../../img/key.svg"
|
||||
width: 40
|
||||
height: 40
|
||||
ColorOverlay {
|
||||
anchors.fill: parent
|
||||
source: parent
|
||||
color: Style.current.blue
|
||||
}
|
||||
}
|
||||
|
||||
StyledText {
|
||||
|
|
Loading…
Reference in New Issue