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
Item {
width: 20
@ -17,15 +17,10 @@ Item {
}
}
Image {
ColorImage {
anchors.centerIn: parent
id: favorites_button_compact
source: "info-favorites.png"
}
ColorOverlay {
anchors.fill: favorites_button_compact
source: favorites_button_compact
source: "info-favorites.svg"
color: active ? favCheckedColor : favUncheckedColor
}
}