[vlc-commits] [Git][videolan/vlc][master] 2 commits: qml: do not use clipping if not necessary in `PlaylistPane`

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Fri May 15 15:45:32 UTC 2026



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


Commits:
643a6344 by Fatih Uzunoglu at 2026-05-15T17:18:47+02:00
qml: do not use clipping if not necessary in `PlaylistPane`

- - - - -
439c5ce6 by Fatih Uzunoglu at 2026-05-15T17:18:47+02:00
qml: do not use clipping if not necessary in `TracksListPage`

- - - - -


2 changed files:

- modules/gui/qt/player/qml/TracksListPage.qml
- modules/gui/qt/playlist/qml/PlaylistPane.qml


Changes:

=====================================
modules/gui/qt/player/qml/TracksListPage.qml
=====================================
@@ -205,7 +205,7 @@ RowLayout {
                 height: tracksListContainer.height - titleHeader.height
                 leftMargin: separator.width
                 focus: true
-                clip: !fadingEdge.implicitClipping
+                clip: !fadingEdge.implicitClipping && (height < contentHeight)
 
                 fadingEdge.backgroundColor: theme.bg.primary
 


=====================================
modules/gui/qt/playlist/qml/PlaylistPane.qml
=====================================
@@ -212,7 +212,7 @@ T.Pane {
 
             focus: true
 
-            clip: !fadingEdge.implicitClipping
+            clip: !fadingEdge.implicitClipping && (height < contentHeight)
 
             model: root.model
 



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/6032a6a89ad4a11fe0b1d7745d5f948e41380d86...439c5ce643719375ca38d97d03e150c35f1d26ae

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/6032a6a89ad4a11fe0b1d7745d5f948e41380d86...439c5ce643719375ca38d97d03e150c35f1d26ae
You're receiving this email because of your account on code.videolan.org. Manage all notifications: https://code.videolan.org/-/profile/notifications | Help: https://code.videolan.org/help




More information about the vlc-commits mailing list