From ce45d362fc96b01f044170c0f405c8f5ccb64ec5 Mon Sep 17 00:00:00 2001 From: Topi Reinio Date: Thu, 6 Mar 2014 14:33:22 +0100 Subject: Rearrange the order of demos in the launcher The launcher will sort the demos alphabetically based on their titles, and then removes leading digits (see cf9b6d17). This allows us to control the order of the demos. This change sets the following order, from left to right: About Qt Enterprise Embedded Launcher Settings Qt5 Everywhere Qt5 Cinematic Demo Qt5 Launch Presentation Virtual Keyboard Qt Quick Enterprise Controls - Dashboard Qt Quick Enterprise Controls - Gallery Controls: Touch Qt Charts - Gallery Media Player Camera Photo Gallery Graphical Effects Sensors Demo Change-Id: I80e5fb66b55f5b5541acc70410c555d4d971e220 Reviewed-by: Eirik Aavitsland --- basicsuite/about-b2qt/title.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basicsuite/about-b2qt') diff --git a/basicsuite/about-b2qt/title.txt b/basicsuite/about-b2qt/title.txt index 634a26a..bc7bf4b 100644 --- a/basicsuite/about-b2qt/title.txt +++ b/basicsuite/about-b2qt/title.txt @@ -1 +1 @@ -About Qt Enterprise Embedded +000. About Qt Enterprise Embedded -- cgit v1.2.3 From bb8049fd3dceea482304076b30ef8cbe574e308f Mon Sep 17 00:00:00 2001 From: Gatis Paeglis Date: Wed, 9 Apr 2014 14:31:19 +0200 Subject: [about-b2qt] Use Screen element for setting width/height Task-number: QTRD-3032 Change-Id: Ifdd27fe756f120bcb78093626908b04a62065d3a Reviewed-by: Laszlo Agocs --- basicsuite/about-b2qt/main.qml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'basicsuite/about-b2qt') diff --git a/basicsuite/about-b2qt/main.qml b/basicsuite/about-b2qt/main.qml index 5c5c6df..694ba50 100644 --- a/basicsuite/about-b2qt/main.qml +++ b/basicsuite/about-b2qt/main.qml @@ -40,12 +40,13 @@ ****************************************************************************/ import QtQuick 2.0 import QtQuick.Particles 2.0 +import QtQuick.Window 2.1 Item { id: root - width: 1280 - height: 800 + width : Screen.height > Screen.width ? Screen.height : Screen.width + height : Screen.height > Screen.width ? Screen.width : Screen.height // Rectangle { // anchors.fill: parent -- cgit v1.2.3