diff options
Diffstat (limited to 'components/effects/Colouriser.qml')
| -rw-r--r-- | components/effects/Colouriser.qml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/effects/Colouriser.qml b/components/effects/Colouriser.qml index b621ecd..bddf573 100644 --- a/components/effects/Colouriser.qml +++ b/components/effects/Colouriser.qml @@ -3,8 +3,10 @@ import QtQuick import QtQuick.Effects MultiEffect { + property color sourceColor: "black" + colorization: 1 - brightness: colorizationColor.hslLightness + brightness: 1 - sourceColor.hslLightness Behavior on colorizationColor { ColorAnimation { |