Fix updating color of arrow in StyledPopupView

This commit is contained in:
Casper Jeukendrup 2021-11-25 12:59:35 +01:00
parent b8de8be08d
commit e0b656b9b1
No known key found for this signature in database
GPG key ID: 6C571BEF59E722DD

View file

@ -160,10 +160,17 @@ PopupView {
Connections {
target: root
function onOpensUpwardChanged() { arrow.requestPaint() }
}
function onOpensUpwardChanged() {
arrow.requestPaint()
}
Connections {
target: contentBackground
function onColorChanged() { arrow.requestPaint() }
}
Connections {
target: contentBackground.border
function onColorChanged() { arrow.requestPaint() }
}
}