diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-05-06 23:55:41 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-05-06 23:55:41 (GMT) |
commit | 627f9b09896a1933dd55e1157a06bdec84c7d70c (patch) | |
tree | dbf1e71a46e2784fdae9e66226de3fd706659e8a /examples/declarative | |
parent | 76408fe44b1b28fbe20c1ada0f1a7f728c1483d1 (diff) | |
download | Qt-627f9b09896a1933dd55e1157a06bdec84c7d70c.zip Qt-627f9b09896a1933dd55e1157a06bdec84c7d70c.tar.gz Qt-627f9b09896a1933dd55e1157a06bdec84c7d70c.tar.bz2 |
white background no good in web page, go gray
Diffstat (limited to 'examples/declarative')
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/tutorials/helloworld/t1/tutorial1.qml b/examples/declarative/tutorials/helloworld/t1/tutorial1.qml index ec29f4f..4e53b8e 100644 --- a/examples/declarative/tutorials/helloworld/t1/tutorial1.qml +++ b/examples/declarative/tutorials/helloworld/t1/tutorial1.qml @@ -2,7 +2,7 @@ Rect { id: Page width: 480 height: 200 - color: "white" + color: "LightGrey" Text { id: HelloText text: "Hello world!" diff --git a/examples/declarative/tutorials/helloworld/t2/tutorial2.qml b/examples/declarative/tutorials/helloworld/t2/tutorial2.qml index 4630435..6c7e68e 100644 --- a/examples/declarative/tutorials/helloworld/t2/tutorial2.qml +++ b/examples/declarative/tutorials/helloworld/t2/tutorial2.qml @@ -2,7 +2,7 @@ Rect { id: Page width: 480 height: 200 - color: "white" + color: "LightGrey" Text { id: HelloText text: "Hello world!" diff --git a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml index 3ca7a2f..bd89ecf 100644 --- a/examples/declarative/tutorials/helloworld/t3/tutorial3.qml +++ b/examples/declarative/tutorials/helloworld/t3/tutorial3.qml @@ -2,7 +2,7 @@ Rect { id: Page width: 480 height: 200 - color: "white" + color: "LightGrey" Text { id: HelloText text: "Hello world!" |