Skip to content
Snippets Groups Projects

qml: do not use paddings in stack view

Open Fatih Uzunoğlu requested to merge fuzun/vlc:qt/dontusepaddinginstackview into master
1 unresolved thread
2 files
+ 2
29
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -265,18 +265,12 @@ FocusScope {
anchors.fill: parent
anchors.rightMargin: (playlistLoader.shown && !VLCStyle.isScreenSmall)
? playlistLoader.width
: 0
: VLCStyle.applicationHorizontalMargin
anchors.bottomMargin: g_mainDisplay.displayMargin
anchors.leftMargin: VLCStyle.applicationHorizontalMargin
pageModel: g_mainDisplay.pageModel
leftPadding: VLCStyle.applicationHorizontalMargin
rightPadding: playlistLoader.shown
? 0
: VLCStyle.applicationHorizontalMargin
Navigation.parentItem: mainColumn
Navigation.upItem: sourcesBanner
Navigation.rightItem: playlistLoader
Loading