Re: [Development] How to skip write property in qml's property binding?

2024-08-07 Thread Ulf Hermann via Development
Thank you Mike, My answer is "what it last was before fooObject went null", and I was use it in my project. That's conceptually not a binding. A binding is something that updates whenever any of its depedencies updates. It's value is calculated from its dependencies. In your case, however, as

[Development] [Announce] Qt Creator 14.0.1 released

2024-08-07 Thread List for announcements regarding Qt releases and development via Announce via Development
We are happy to announce the release of Qt Creator 14.0.1! https://www.qt.io/blog/qt-creator-14.0.1-released -- Eike Ziller Principal Software Engineer The Qt Company GmbH Erich-Thilo-Str. 10 12489 Berlin, Germany eike.zil...@qt.io https://qt.io Geschäftsführer: Mika Pälsi, Juha Varelius, Joun

Re: [Development] How to skip write property in qml's property binding?

2024-08-07 Thread JiDe Zhang
Thank you Mike, My answer is "what it last was before fooObject went null", and I was use it in my project. Relatively speaking, "text: fooObject?.title ?? text" is the easiest way to understand so far. From: Development on behalf of JiDe Zhang Sent: Wednesday

Re: [Development] How to skip write property in qml's property binding?

2024-08-07 Thread JiDe Zhang
I can't add the RESET attribute to the property, because that properties isn't defined in my project. Also, I don't want this attribute to be reset. I want it to retain its current value, it has lost its binding state only. From: Development on behalf of Ulf Her