Fixed the app icon size on the About page in landscape
It was ridiculously large.
This commit is contained in:
parent
bfba8acc2d
commit
8e54b898d7
1 changed files with 1 additions and 2 deletions
|
@ -51,8 +51,7 @@ Page {
|
||||||
|
|
||||||
fillMode: Image.PreserveAspectFit
|
fillMode: Image.PreserveAspectFit
|
||||||
asynchronous: true
|
asynchronous: true
|
||||||
width: aboutPage.isPortrait ? ( 1/2 * parent.width ) : ( 1/2 * parent.height )
|
width: (aboutPage.isPortrait ? aboutPage.width : aboutPage.height) / 2
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
|
|
Loading…
Reference in a new issue