Skip to content

Commit

Permalink
Make some variables more explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
E.S. Rosenberg a.k.a. Keeper of the Keys committed Mar 31, 2024
1 parent a62a1ba commit 349c8d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qml/PlayerPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Page {
id: flickable
anchors.fill: parent

contentWidth: isPortrait ? Screen.width : Screen.height
contentHeight: isPortrait ? artColumn.height + infoColumn.height : Math.max(artColumn.height + infoColumn.height)

PullDownMenu {
Expand Down Expand Up @@ -61,7 +62,7 @@ Page {

Flow {
id: pageFlow
width: parent.width
width: playerPage.width

Column {
id: artColumn
Expand Down

0 comments on commit 349c8d4

Please sign in to comment.