summaryrefslogtreecommitdiff
path: root/src/controls/Tab.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/controls/Tab.qml')
-rw-r--r--src/controls/Tab.qml12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/controls/Tab.qml b/src/controls/Tab.qml
index 355fb44a..f358181d 100644
--- a/src/controls/Tab.qml
+++ b/src/controls/Tab.qml
@@ -48,7 +48,17 @@ import QtQuick 2.2
\brief Tab represents the content of a tab in a TabView.
A Tab item inherits from Loader and provides a similar
- api.
+ API.
+
+ Tabs are lazily loaded; only tabs that have been made current (for example,
+ by clicking on them) will have valid content. You can force loading of tabs
+ by setting the active property to \c true:
+
+ \code
+ Tab {
+ active: true
+ }
+ \endcode
\sa TabView
*/