[vlc-commits] [Git][videolan/vlc][master] 2 commits: qml: fix base case and provide documentation for feature

Rémi Denis-Courmont (@Courmisch) gitlab at videolan.org
Sat Jul 16 08:03:08 UTC 2022



Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC


Commits:
060f22e2 by Prince Gupta at 2022-07-16T07:45:46+00:00
qml: fix base case and provide documentation for feature

- - - - -
b4c14482 by Prince Gupta at 2022-07-16T07:45:46+00:00
qml: fix context menu in video group view

- - - - -


2 changed files:

- modules/gui/qt/medialibrary/qml/VideoAll.qml
- modules/gui/qt/medialibrary/qml/VideoAllDisplay.qml


Changes:

=====================================
modules/gui/qt/medialibrary/qml/VideoAll.qml
=====================================
@@ -127,6 +127,11 @@ FocusScope {
         ].filter(function(a) { return a !== "" })
     }
 
+    // reimplement function to show "Info Panel" in grid view for the model index data
+    function isInfoExpandPanelAvailable(modelIndexData) {
+        return false
+    }
+
     // Events
 
     function onAction(indexes) {


=====================================
modules/gui/qt/medialibrary/qml/VideoAllDisplay.qml
=====================================
@@ -105,6 +105,10 @@ Widgets.PageLoader {
             onCurrentIndexChanged: root._updateHistoryGroup(group)
             onParentIdChanged    : root._updateHistoryGroup(group)
             onTitleChanged       : root._updateHistoryGroup(group)
+
+            function isInfoExpandPanelAvailable(/* modelIndexData */) {
+                return true
+            }
         }
     }
 }



View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/10e0b4d53816549ea834f503e34ec4ea7624890d...b4c144823020a177357884eaebf6d1cb731764b2

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/compare/10e0b4d53816549ea834f503e34ec4ea7624890d...b4c144823020a177357884eaebf6d1cb731764b2
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