Adjusted app icon size on the about page

It was still too large on a 4:3 tablet screen in landscape.
This commit is contained in:
Slava Monich 2020-10-18 01:56:11 +03:00
parent 7d84fcb3bf
commit 93e54b8ab4

View file

@ -51,7 +51,7 @@ Page {
fillMode: Image.PreserveAspectFit
asynchronous: true
width: (aboutPage.isPortrait ? aboutPage.width : aboutPage.height) / 2
width: Math.min(2 * Theme.itemSizeHuge, Math.min(aboutPage.width, aboutPage.height) / 2)
}
Label {