Landscape mode support, better square view layout

This commit is contained in:
Thomas Perl 2014-03-18 20:36:18 +01:00
parent 9eb422f892
commit 56c9139dd2
3 changed files with 9 additions and 8 deletions

View file

@ -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