[vlc-commits] [Git][videolan/vlc][master] qml: fix VideoView on Qt 6.2
Steve Lhomme (@robUx4)
gitlab at videolan.org
Fri Jun 14 11:00:55 UTC 2024
Steve Lhomme pushed to branch master at VideoLAN / VLC
Commits:
182bcb9c by Prince Gupta at 2024-06-14T10:46:01+00:00
qml: fix VideoView on Qt 6.2
manually assigning delegate with a Component seems to fail with some Qt versions like Qt 6.2.4
- - - - -
1 changed file:
- modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml
Changes:
=====================================
modules/gui/qt/medialibrary/qml/VideoInfoExpandPanel.qml
=====================================
@@ -300,7 +300,7 @@ FocusScope {
Repeater {
id: sourceRepeater
- delegate: Repeater {
+ Repeater {
id: delegateRepeater
model: column.delegateModel
@@ -309,7 +309,7 @@ FocusScope {
required property int index
readonly property bool isFirst: (index === 0)
- delegate: Widgets.MenuCaption {
+ Widgets.MenuCaption {
required property var modelData
required property int index
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/182bcb9cb2111b556f223f72d9ab912eb33a4613
--
This project does not include diff previews in email notifications.
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/182bcb9cb2111b556f223f72d9ab912eb33a4613
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