From 93e54b8ab4f7f16ed2dfdcf84adcbd835de37485 Mon Sep 17 00:00:00 2001 From: Slava Monich Date: Sun, 18 Oct 2020 01:56:11 +0300 Subject: [PATCH] Adjusted app icon size on the about page It was still too large on a 4:3 tablet screen in landscape. --- qml/pages/AboutPage.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/pages/AboutPage.qml b/qml/pages/AboutPage.qml index 561e40a..1dd253e 100644 --- a/qml/pages/AboutPage.qml +++ b/qml/pages/AboutPage.qml @@ -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 {