reorganize repo: move shell sources into shell/, test scripts into test/

This commit is contained in:
Damocles 2026-04-17 18:29:40 +02:00
parent 344c1f8512
commit d6cd2f173a
60 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,16 @@
import QtQuick
import QtQuick.Effects
Image {
id: root
required property color tint
fillMode: Image.PreserveAspectFit
layer.enabled: true
layer.effect: MultiEffect {
colorization: 1.0
colorizationColor: root.tint
}
}