Dr. Peter Droste
Dr. Peter Droste
That's an error related to version [v6.3.4](../releases/tag/v6.3.4a). Qt 6.4 was beta when I released this QtJambi version. Meanwhile, Qt 6.4 API changed at a few positions causing these incompatibilities. I...
This issue is solved with 6.4.0.
Oh, that's something missing in QtJambi. thanks for reporting. Fix it by adding the following line at the beginning of `main()`: ``` io.qt.QtUtilities.loadQtLibrary("WaylandClient", io.qt.QtUtilities.LibraryRequirementMode.ProvideOnly, "linux"); ```
Isn't there Qt6WaylandEglClientHwIntegration in the bundle? Otherwise add: ``` io.qt.QtUtilities.loadQtLibrary("WaylandEglClientHwIntegration", io.qt.QtUtilities.LibraryRequirementMode.ProvideOnly, "linux"); ```
Oh, as I see, you are using QtJambi for Qt 6.4.0. Did you build it yourself from latest release?
Ok, the solution for this kind of error should now be streight forward. I will take this thread to improve the deployment dependencies. So if you have firther missing things,...
I can clearly say, that the issue you reported is not caused by QtJambi but by Qt. In general, threaded changing of models is possible. There is no affinity check...
> @omix also qrc:/ links stopped working with latest jambi build that I made, could you please check if they work for you? In the IDE mode, where all files...
Reopening because of response in https://bugreports.qt.io/browse/QTBUG-107598
Methods `QAbstractItemModel::beginX` and `QAbstractItemModel::endX` are thread-affine to the thread of a proxy model. Unfortunately, does not have any backreference to such a proxy model. Either I make beginX/endX affine to...