From 8e54b898d71366e2e4f0a5f6ded54e9416c87258 Mon Sep 17 00:00:00 2001 From: Slava Monich Date: Wed, 14 Oct 2020 04:03:35 +0300 Subject: [PATCH] Fixed the app icon size on the About page in landscape It was ridiculously large. --- qml/pages/AboutPage.qml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml index 2f60d31..561e40a 100644 --- a/qml/pages/AboutPage.qml +++ b/qml/pages/AboutPage.qml @@ -51,8 +51,7 @@ Page { fillMode: Image.PreserveAspectFit asynchronous: true - width: aboutPage.isPortrait ? ( 1/2 * parent.width ) : ( 1/2 * parent.height ) - + width: (aboutPage.isPortrait ? aboutPage.width : aboutPage.height) / 2 } Label {