diff options
author | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-04-18 21:11:56 +0200 |
---|---|---|
committer | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-04-21 14:59:17 +0000 |
commit | a42fb3de9b56d242892503d35ea4bdc7bf7849b3 (patch) | |
tree | 89da8c4ccb66e6c19323cd791d3c72b06c3a53f2 /src/controls/Private/TabBar.qml | |
parent | 5bc5b91acbeaa6cb3b580a93e425d7db4ac6b8cc (diff) | |
download | qtquickcontrols-a42fb3de9b56d242892503d35ea4bdc7bf7849b3.tar.gz |
TabBar: clip to avoid drawing outside bounds
Change-Id: I7ae2bf44d148c563417b905620fc2c20d8060fe8
Reviewed-by: Gabriel de Dietrich <gabriel.dedietrich@theqtcompany.com>
Diffstat (limited to 'src/controls/Private/TabBar.qml')
-rw-r--r-- | src/controls/Private/TabBar.qml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/controls/Private/TabBar.qml b/src/controls/Private/TabBar.qml index 183d006b..c9416240 100644 --- a/src/controls/Private/TabBar.qml +++ b/src/controls/Private/TabBar.qml @@ -115,6 +115,7 @@ FocusScope { orientation: Qt.Horizontal interactive: false focus: true + clip: true // Note this will silence the binding loop warnings caused by QTBUG-35038 // and should be removed when this issue is resolved. |