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 10:22:45 +0000
commit4e5e05460ef39c069fa7219dc7d16e50ab421f80 (patch)
treedabd27bfd83b400dfe834e2338bba79746ad04d4
parent93efee3a140b74942c5c0ed32478f53318101975 (diff)
downloadqtdoc-4e5e05460ef39c069fa7219dc7d16e50ab421f80.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 1b40028b..6a676a0c 100644
--- a/doc/src/qmlapp/firststepsqml.qdoc
+++ b/doc/src/qmlapp/firststepsqml.qdoc
@@ -139,6 +139,8 @@ import QtQuick.Controls 2.12
//window containing the application
ApplicationWindow {
+ visible: true
+
//title of the application
title: qsTr("Hello World")
width: 640