Landscape mode support, better square view layout
This commit is contained in:
parent
9eb422f892
commit
56c9139dd2
3 changed files with 9 additions and 8 deletions
|
@ -32,7 +32,8 @@ Item {
|
|||
|
||||
GPodderPodcastListModel { id: podcastListModel }
|
||||
|
||||
property real scalef: width / 480
|
||||
property real scalef: (width < height) ? (width / 480) : (height / 480)
|
||||
property int shorterSide: (width < height) ? width : height
|
||||
property int dialogsVisible: 0
|
||||
|
||||
anchors.fill: parent
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue