From e85980473d6f8eba4666336bd450688a835a0d3a Mon Sep 17 00:00:00 2001 From: "fukubayashi.akio" Date: Thu, 25 Jul 2019 10:43:01 +0900 Subject: Fix resize Signed-off-by: fukubayashi.akio --- app/Dashboard.qml | 8 +++++--- package/config.xml | 1 - 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/Dashboard.qml b/app/Dashboard.qml index d343d8a..209388a 100644 --- a/app/Dashboard.qml +++ b/app/Dashboard.qml @@ -24,8 +24,8 @@ import Translator 1.0 ApplicationWindow { id: root - width: container.width * container.scale - height: container.height * container.scale + //width: container.width * container.scale + //height: container.height * container.scale Translator { id: translator @@ -97,7 +97,9 @@ ApplicationWindow { anchors.centerIn: parent width: 1080 height: 1487 - scale: screenInfo.scale_factor() + //scale: screenInfo.scale_factor() + //scale: 1080 / root.width + scale: root.height / 1487 Label { id: speed diff --git a/package/config.xml b/package/config.xml index 9b45b3c..8e1f43d 100644 --- a/package/config.xml +++ b/package/config.xml @@ -13,7 +13,6 @@ - -- cgit 1.2.3-korg