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:
parent
7d84fcb3bf
commit
93e54b8ab4
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ Page {
|
||||||
|
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
width: (aboutPage.isPortrait ? aboutPage.width : aboutPage.height) / 2
|
width: Math.min(2 * Theme.itemSizeHuge, Math.min(aboutPage.width, aboutPage.height) / 2)
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
|
Loading…
Reference in a new issue