Skip to content
Snippets Groups Projects
Commit 182bcb9c authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Steve Lhomme
Browse files

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
parent f6e5e376
No related branches found
No related tags found
1 merge request!5561qml: fix Video View on Qt 6.2
Pipeline #480764 passed with warnings with stage
in 12 minutes and 39 seconds
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment