diff options
author | José Bollo <jose.bollo@iot.bzh> | 2018-07-26 19:06:19 +0200 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2018-08-03 16:05:23 +0000 |
commit | c090b00f5c466bb111fd99f4a3dacd635044d79f (patch) | |
tree | 9203f33bfda10e5577856eb78200f1ae4382d819 /recipes-graphics/web-runtime | |
parent | 0f56ae9d77a3790c152d2dc7ce369e1b6543890e (diff) |
web-runtime: Set dimension to 1080x1488
Bug-AGL: SPEC-1346
Change-Id: I60250350bbef29ca5b406c25dfe24176deda81f0
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'recipes-graphics/web-runtime')
-rw-r--r-- | recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml | 4 | ||||
-rw-r--r-- | recipes-graphics/web-runtime/web-runtime/web-runtime.qml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml b/recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml index d18b672cd..8025ab12e 100644 --- a/recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml +++ b/recipes-graphics/web-runtime/web-runtime/web-runtime-webkit.qml @@ -3,8 +3,8 @@ import QtQuick.Controls 1.1 import QtWebKit 3.0 ApplicationWindow { - width: 1024 - height: 768 + width: 1080 + height: 1488 visible: true WebView { url: Qt.application.arguments[1] diff --git a/recipes-graphics/web-runtime/web-runtime/web-runtime.qml b/recipes-graphics/web-runtime/web-runtime/web-runtime.qml index 852567a49..3efe51591 100644 --- a/recipes-graphics/web-runtime/web-runtime/web-runtime.qml +++ b/recipes-graphics/web-runtime/web-runtime/web-runtime.qml @@ -3,8 +3,8 @@ import QtQuick.Controls 1.1 import QtWebEngine 1.1 ApplicationWindow { - width: 1024 - height: 768 + width: 1080 + height: 1488 visible: true flags: Qt.WindowFullScreen | Qt.FramelessWindowHint WebEngineView { |