Replace the info-*.png files used in qml with svg variants

This commit is contained in:
luisangelsm
2026-02-12 19:26:51 +01:00
parent 63d9129dcc
commit 1ef1029cf5
20 changed files with 64 additions and 43 deletions

View File

@ -1,6 +1,6 @@
import QtQuick
import Qt5Compat.GraphicalEffects
import QtQuick.Controls.impl
Row {
spacing: 0
@ -16,14 +16,9 @@ Row {
width: 25
height: 20
Image {
ColorImage {
id: star
source: "info-rating.png"
}
ColorOverlay {
anchors.fill: star
source: star
source: "info-rating.svg"
color: index < (mouseIndex > 0 ? mouseIndex : rating) ? ratingSelectedColor : ratingUnselectedColor
}