summaryrefslogtreecommitdiffstats
path: root/src/controls/TabView.qml
diff options
context:
space:
mode:
authorCaroline Chao <caroline.chao@digia.com>2013-03-19 10:06:40 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-03-19 17:55:36 +0100
commite1e7e4212bcb43aab7a578df5c718ad311ea61f6 (patch)
tree913b73201c37b136397d6fe86e5757dfc4906107 /src/controls/TabView.qml
parent023f4ec1a135d1a3bd9ce659b095bd4ed2e8b806 (diff)
TabView: add implicitWidth and implicitHeight
Change 7d40a10e49d1959c0523eab26de348a616596f79 removed the width and height of the TabView. The TabView needs a default size to be displayed properly. Change-Id: Ic8d819222efa17cee1f8aebee9ac62e371142174 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/TabView.qml')
-rw-r--r--src/controls/TabView.qml2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/controls/TabView.qml b/src/controls/TabView.qml
index d24e677c4..bd0ed4f15 100644
--- a/src/controls/TabView.qml
+++ b/src/controls/TabView.qml
@@ -53,6 +53,8 @@ import "Styles/Settings.js" as Settings
FocusScope {
id: root
+ implicitWidth: 150
+ implicitHeight: 150
/*! The current tab index */
property int currentIndex: 0