Skip to content
Snippets Groups Projects
Commit 2e1d7e29 authored by Prince Gupta's avatar Prince Gupta :speech_balloon: Committed by Pierre Lamot
Browse files

qml: fix invalid property access in BannerSources

parent b2b2cfa8
No related branches found
No related tags found
1 merge request!165qml: fix error messages
......@@ -324,7 +324,7 @@ Widgets.NavigableFocusScope {
focus: !!item && item.focus && item.visible
visible: !!item
enabled: status === Loader.Ready
y: (VLCStyle.localToolbar_height - item.height) / 2
y: status === Loader.Ready ? (VLCStyle.localToolbar_height - item.height) / 2 : 0
width: !!item
? Helpers.clamp(localMenuView.availableWidth,
localMenuGroup.item.minimumWidth || localMenuGroup.item.implicitWidth,
......
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