From d6dcc11bb9910a194bec02a252bd99f2116aa8eb Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 3 Sep 2017 20:29:46 +0200 Subject: [PATCH] Remove unneeded resizing --- demo/qml/FibonacciList.qml | 2 -- 1 file changed, 2 deletions(-) diff --git a/demo/qml/FibonacciList.qml b/demo/qml/FibonacciList.qml index 8599a4f..6da1f51 100644 --- a/demo/qml/FibonacciList.qml +++ b/demo/qml/FibonacciList.qml @@ -9,12 +9,10 @@ TableView { role: "row" title: qsTr("Row") width: 100 - Component.onCompleted: resizeToContents() } TableViewColumn { role: "fibonacciNumber" title: qsTr("Fibonacci number") width: 100 - Component.onCompleted: resizeToContents() } }