[vlc-commits] qml: prevent playlist drop indicator bar glitching

Fatih Uzunoglu git at videolan.org
Mon Aug 10 12:10:06 CEST 2020


vlc | branch: master | Fatih Uzunoglu <fuzun54 at outlook.com> | Thu Jul 30 00:04:32 2020 +0300| [bb9eb5c18032bb53f3529559c8228e56fd83d997] | committer: Pierre Lamot

qml: prevent playlist drop indicator bar glitching

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=bb9eb5c18032bb53f3529559c8228e56fd83d997
---

 modules/gui/qt/playlist/qml/PLItem.qml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/gui/qt/playlist/qml/PLItem.qml b/modules/gui/qt/playlist/qml/PLItem.qml
index 805d24ec8d..b7bb394e0e 100644
--- a/modules/gui/qt/playlist/qml/PLItem.qml
+++ b/modules/gui/qt/playlist/qml/PLItem.qml
@@ -250,6 +250,9 @@ Rectangle {
 
         ColumnLayout {
             anchors.fill: parent
+            // exceed bottom boundary by the height of item separator to prevent drop indicator bar visible glitch
+            anchors.bottomMargin: -1
+
             spacing: 0
 
             DropArea {



More information about the vlc-commits mailing list