summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@digia.com>2013-10-31 12:34:41 +0200
committerTitta Heikkala <titta.heikkala@digia.com>2013-10-31 13:50:43 +0200
commit22b983f9864ba1a1a3849210370ffa0d8bb4364a (patch)
tree6e12783917ef727e028c7b57a49cca84ae0b2e5b /demos
parenta54f42bb13ad653a275ce7a75ba78411a9ca9fcf (diff)
Fix the geometry for examples and demos
The default geometry for examples and demos is set so that the labels are not truncated. Change-Id: Ic6a0ba1e8a34af7ab1dd6a079d40aaf5abc93636 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>
Diffstat (limited to 'demos')
-rw-r--r--demos/qmlaxes/qml/qmlaxes/loader.qml2
-rw-r--r--demos/qmlchart/qml/qmlchart/loader.qml4
-rwxr-xr-xdemos/qmlcustomlegend/qml/qmlcustomlegend/loader.qml2
-rw-r--r--demos/qmloscilloscope/qml/qmloscilloscope/main.qml4
-rw-r--r--demos/qmlweather/qml/qmlweather/main.qml4
-rw-r--r--demos/quick2chart/qml/quick2chart/loader.qml4
6 files changed, 10 insertions, 10 deletions
diff --git a/demos/qmlaxes/qml/qmlaxes/loader.qml b/demos/qmlaxes/qml/qmlaxes/loader.qml
index e035fca7..728e36b9 100644
--- a/demos/qmlaxes/qml/qmlaxes/loader.qml
+++ b/demos/qmlaxes/qml/qmlaxes/loader.qml
@@ -22,7 +22,7 @@ import QtQuick 1.0
Item {
id: container
- width: 400
+ width: 440
height: 300
Component.onCompleted: {
var co = Qt.createComponent("main.qml")
diff --git a/demos/qmlchart/qml/qmlchart/loader.qml b/demos/qmlchart/qml/qmlchart/loader.qml
index e035fca7..98e6923f 100644
--- a/demos/qmlchart/qml/qmlchart/loader.qml
+++ b/demos/qmlchart/qml/qmlchart/loader.qml
@@ -22,8 +22,8 @@ import QtQuick 1.0
Item {
id: container
- width: 400
- height: 300
+ width: 600
+ height: 400
Component.onCompleted: {
var co = Qt.createComponent("main.qml")
if (co.status == Component.Ready) {
diff --git a/demos/qmlcustomlegend/qml/qmlcustomlegend/loader.qml b/demos/qmlcustomlegend/qml/qmlcustomlegend/loader.qml
index 75ea90cb..64063210 100755
--- a/demos/qmlcustomlegend/qml/qmlcustomlegend/loader.qml
+++ b/demos/qmlcustomlegend/qml/qmlcustomlegend/loader.qml
@@ -23,7 +23,7 @@ import QtQuick 1.0
Item {
id: container
width: 400
- height: 300
+ height: 320
Component.onCompleted: {
var co = Qt.createComponent("main.qml")
if (co.status == Component.Ready) {
diff --git a/demos/qmloscilloscope/qml/qmloscilloscope/main.qml b/demos/qmloscilloscope/qml/qmloscilloscope/main.qml
index 82254916..b0bb8a4a 100644
--- a/demos/qmloscilloscope/qml/qmloscilloscope/main.qml
+++ b/demos/qmloscilloscope/qml/qmloscilloscope/main.qml
@@ -23,8 +23,8 @@ import QtQuick 1.0
//![1]
Rectangle {
id: main
- width: 400
- height: 300
+ width: 460
+ height: 350
color: "#404040"
ControlPanel {
diff --git a/demos/qmlweather/qml/qmlweather/main.qml b/demos/qmlweather/qml/qmlweather/main.qml
index 61bdd8b5..1e34c3e2 100644
--- a/demos/qmlweather/qml/qmlweather/main.qml
+++ b/demos/qmlweather/qml/qmlweather/main.qml
@@ -22,8 +22,8 @@ import QtQuick 1.1
import QtCommercial.Chart 1.2
Rectangle {
- width: 360
- height: 360
+ width: 500
+ height: 400
gradient: Gradient {
GradientStop { position: 0.0; color: "lightblue" }
GradientStop { position: 1.0; color: "white" }
diff --git a/demos/quick2chart/qml/quick2chart/loader.qml b/demos/quick2chart/qml/quick2chart/loader.qml
index 8017406e..080fce66 100644
--- a/demos/quick2chart/qml/quick2chart/loader.qml
+++ b/demos/quick2chart/qml/quick2chart/loader.qml
@@ -22,8 +22,8 @@ import QtQuick 2.0
Item {
id: container
- width: 400
- height: 300
+ width: 600
+ height: 400
Component.onCompleted: {
var co = Qt.createComponent("main.qml")
if (co.status == Component.Ready) {