[vlc-commits] [Git][videolan/vlc][master] qml: correct logic in FadingEdge

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Thu Dec 7 18:53:18 UTC 2023



Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC


Commits:
1c09b006 by Fatih Uzunoglu at 2023-12-07T18:07:12+00:00
qml: correct logic in FadingEdge

- - - - -


1 changed file:

- modules/gui/qt/widgets/qml/FadingEdge.qml


Changes:

=====================================
modules/gui/qt/widgets/qml/FadingEdge.qml
=====================================
@@ -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
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1c09b0061147c00d195e21c854b1e1e6844f1cb3

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/1c09b0061147c00d195e21c854b1e1e6844f1cb3
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list