aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml')
-rw-r--r--tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml b/tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml
deleted file mode 100644
index 37f6a463..00000000
--- a/tests/benchmarks/quickcontrols2/qmlbench/creation/delegates_tabbar.qml
+++ /dev/null
@@ -1,23 +0,0 @@
-import QtQuick
-import QmlBench
-import QtQuick.Controls
-
-CreationBenchmark {
- id: root
- count: 20
- staticCount: 250
- delegate: TabBar {
- x: QmlBench.getRandom() * root.width - width
- y: QmlBench.getRandom() * root.height - height
- currentIndex: index / root.staticCount * count
- TabButton {
- text: "Tab1"
- }
- TabButton {
- text: "Tab2"
- }
- TabButton {
- text: "Tab3"
- }
- }
-}