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 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'app/Dashboard.qml') 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 -- cgit 1.2.3-korg