fix(Core): don't rotate `ColorOverlay` of `StatusIcon`
As discussed in #109, when using the `rotation` property of `StatusIcon` it seems to just mirror the underlying image source. It turns out that using `rotation` on the image source is enough to have the `ColorOverlay` rotate as well. Adding a `rotation` to the overlay will rotate the source that's already rotated, resulting in a mirrored result. To fix this, we're removing the additional `rotation` from the overlay. Fixes #109
This commit is contained in:
parent
202fb88654
commit
062fe42a81
|
@ -25,7 +25,6 @@ Image {
|
|||
color: statusIcon.color
|
||||
antialiasing: true
|
||||
smooth: true
|
||||
rotation: statusIcon.rotation
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue