From 3007e9ca8e0636e6a2a4e61eb113869bfcc1385b Mon Sep 17 00:00:00 2001 From: Marius Vlad Date: Tue, 14 Apr 2020 22:25:23 +0300 Subject: [PATCH] Adjust the window size Signed-off-by: Marius Vlad --- app/Onscreen.qml | 4 ++-- app/main.qml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Onscreen.qml b/app/Onscreen.qml index 5e53f98..ebb0641 100644 --- a/app/Onscreen.qml +++ b/app/Onscreen.qml @@ -4,8 +4,8 @@ import QtQuick.Controls 2.0 Rectangle { id: mainform - height: 300 - width: 1000 + height: 400 + width: 800 radius:2 gradient: Gradient { diff --git a/app/main.qml b/app/main.qml index dd478c3..6fc5d1e 100644 --- a/app/main.qml +++ b/app/main.qml @@ -27,8 +27,8 @@ Window { visible: true x: 0 // note, these are not set here y: 218 // note, these are not set here - width: 1080 - height: 1488 + width: 400 + height: 800 color: '#00000000' Onscreen { -- 2.16.6