Re: [Interest] sizeHint for delegates not wqorking

2018-07-03 Thread Frank Rueter | OHUfx
Ah, thanks a lot! That did indeed fix it. Cheers, frank On 3/07/18 11:56 PM, Francis Herne wrote: On Tuesday, 3 July 2018 03:11:42 BST Frank Rueter | OHUfx wrote: Hi all, I am having trouble controlling my table view’s column sizes. I thought implementing the delegate’s sizeHint was a way to

Re: [Interest] Duration property of PropertyAnimation

2018-07-03 Thread Jérôme Godbout
Probably not the most helpful, but you could more easily fix this by doing a Behavior on the animation instead. But this is a reverse handling, the Transform will hold the Behavior which hold the NumberAnimation. The bahavior have an enabled property. http://doc.qt.io/qt-5/qml-qtquick-behavior

[Interest] Duration property of PropertyAnimation

2018-07-03 Thread Marco Trapanese
Hi to all, I'm working on a project that use Qt 5.9.2 on RPi3B+, with eglfs platform. Here a full working code: import QtQuick 2.9 import QtQuick.Window 2.3 Window {     visible: true     property real _degree: 0     property real _time: 50     Component.onCompleted: move()     function mov

Re: [Interest] sizeHint for delegates not wqorking

2018-07-03 Thread Francis Herne
On Tuesday, 3 July 2018 03:11:42 BST Frank Rueter | OHUfx wrote: > Hi all, > > I am having trouble controlling my table view’s column sizes. > I thought implementing the delegate’s sizeHint was a way to do this but > it won’t work for me. > > Can somebody please point out what I’m missing? You m