Skip to content
Snippets Groups Projects
Commit 1c09b006 authored by Fatih Uzunoğlu's avatar Fatih Uzunoğlu Committed by Jean-Baptiste Kempf
Browse files

qml: correct logic in FadingEdge

parent d887149b
No related branches found
No related tags found
1 merge request!4638qml: correct logic in FadingEdge
Pipeline #414109 passed with stages
in 25 minutes and 3 seconds
......@@ -88,8 +88,9 @@ Item {
smooth: false
visible: effectCompatible && (root.enableBeginningFade || root.enableEndFade) ||
((shaderEffect) && (shaderEffect.beginningFadeSize > 0 || shaderEffect.endFadeSize > 0))
visible: effectCompatible &&
((root.enableBeginningFade || root.enableEndFade) ||
((shaderEffect) && (shaderEffect.beginningFadeSize > 0 || shaderEffect.endFadeSize > 0)))
property ShaderEffect shaderEffect
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment