Draft: fix binding loop warnings on width/height
- Open Video->Go back to main screen:
qml message qrc:/main/MainDisplay.qml:539 QML MiniPlayer: Binding loop detected for property "height"
This is fixed by adding width: 0
- Changing app scale size:
qml message qrc:/widgets/BannerTabButton.qml:90 QML QQuickItem: Binding loop detected for property "implicitWidth"
qml message qrc:/widgets/OverlayMenu.qml:198 QML AbstractButton: Binding loop detected for property "implicitWidth"
qml message qrc:/playlist/PlaylistListView.qml:449 QML PlaylistDelegate: Binding loop detected for property "implicitWidth"
While for the overlay menu the fix is obvious (since no background exists), for the banner and playlistview i only found a solution of removing the implicit width/height which from what i see doesn't affect anything
Edited by Leon Vitanos