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:
Pascal Precht 2021-06-02 14:23:00 +02:00 committed by Michał Cieślak
parent 4e25f584cc
commit 80dbec9fcc
1 changed files with 0 additions and 1 deletions

View File

@ -25,7 +25,6 @@ Image {
color: statusIcon.color
antialiasing: true
smooth: true
rotation: statusIcon.rotation
}
}