summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Gaist <samuel.gaist@idiap.ch>2021-12-05 20:31:33 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-12-06 09:37:45 +0000
commit919d7cfb391ea639a1c94077d55ead52da1105b4 (patch)
treef1612fe467fd3f469cac646c211805b0547d8eaf
parentaa115ade470c93f176d5c49e6e7ba9656db93977 (diff)
downloadqtdoc-919d7cfb391ea639a1c94077d55ead52da1105b4.tar.gz
Doc: add missing visible property to ApplicationWindow example
Without that property the window stays invisible which will be confusing for newcomers testing this example. Change-Id: I7c4f5af170fb0830ff0a8eb4eee9cd463ab9b361 Reviewed-by: Paul Wicking <paul.wicking@qt.io> (cherry picked from commit 707eae4de62110283b985281ada5175a9950bbac) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--doc/src/qmlapp/firststepsqml.qdoc2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/src/qmlapp/firststepsqml.qdoc b/doc/src/qmlapp/firststepsqml.qdoc
index f51834d8..e909bcdd 100644
--- a/doc/src/qmlapp/firststepsqml.qdoc
+++ b/doc/src/qmlapp/firststepsqml.qdoc
@@ -139,6 +139,8 @@ import QtQuick.Controls
//window containing the application
ApplicationWindow {
+ visible: true
+
//title of the application
title: qsTr("Hello World")
width: 640