SUMMARY I made a plugin called Tela (https://github.com/EyeOdin/Tela) that worked perfectly up until Krita 4.4.5 after that everything up too krita 5 it has become buggy. The issue to my testing was the QThread not working inside Krita as expected. since the Qt version did not change i can only assume something that allows QThreads has changed or something like that. Because the same code runs but it is not actually in a thread to run independent and not lag the interface. This is the same issue when trying to run a function inside a thread with Python instead of PyQt5. I assume that now neither methods work. STEPS TO REPRODUCE 1. use this plugin in krita 4.4.5 and in krita 5 2. when it tries to update the display by creating a thumbnail(created inside a QThread) by doing anything (like resizing the docker) the interface will lag. 3. Press the ON button to become DIS to see the difference to when it is not updating the thumbnail. OBSERVED RESULT you will notice that the plugin in 4.4.5 will not lag while in krita 5 it will be lagging. EXPECTED RESULT Running the Qthread and have it work as expected, without lag on the UI. SOFTWARE/OS VERSIONS Windows: 10 Qt Version: 5.12 ADDITIONAL INFORMATION On the Tela Plugin if you press the ON button it will change into DIS mode where it will run without trying to update the thumbnail. This literally isolates the QThread operation and you are able to see the plugin not lagging on either versions of Krita. Excluding the Option of using a thread as a viable option, I have been trying find another way to update without lagging but without some help either way there seems to be a loosing battle as there is not enough information about the user is doing available in Python to make a update with a good timming.
We did upgrade sip and PyQt, which is a huge change. Can you make a minimal reproducible example that shows the issue, instead of a full plugin?
I made the minimal working example. download at: https://github.com/EyeOdin/bug_report_example to use this: 1. install "bug_report_example" as any other plugin docker. 2. open any image bigger than 1000x1000 or so with krita. This will update the display of that image every second without any limitations for this example. 3. press Left Mouse Button on the docker and move the white square with the mouse. 4. using this in 4.4.5 will move the square with no lag and on krita 5 will move the square with rubber banding Notes: 0. This contains the essencial loop of QThread present on Tela. I tryed to make a scripter version but considering I had to create a window to exist, it was not affected by the UI lag nor it had canvas directly available and Krita somehow as it seemed independant I might be wrong though. But because of that I made it into a mini docker as I think this is a composited problem and not a isolate case that happens on every situation with QThread. 1. I know self.update() sucks to cause lag but I made it to write it faster, my original script does not have it but has tons of more stuff that justifies not using it. 2. The original script stops itself from doing a full loop but still has to check what is the image because I cant detect if there was an interaction of the user with Krita to guess "considering the user clicked Krita did he edit the image?" I made that into another proposal to bypass this QThread handycap situation at: https://krita-artists.org/t/python-user-activity-versus-inactivity-timer/28504 However doing this proposal with the current system is so glitchy and prone to crash that is not worth exploring more as it is not a viable solution as I state on the thread. Either way, the usage of QThread bypassed all these crossroads by simply powering through it by managing the workload correctly.
I can't see any difference with the example plugin between 4.4.3 and 5.0 beta... Are you sure the issue has anything to do with threading? "krita 5 will move the square with rubber banding" sounds more like the widget painting became slower. Is there maybe fractional UI scaling at play? Because if the QImage and the widget don't have the same devicePixelRatio(), the image has to be scaled, which of course is a lot slower than painting it 1:1. Repainting the whole image on every cursor move is very inefficient to begin with...
I was asked a minimal working example not efficiency... in Krita 4.4.5 and below does not go slow and in Krita 5 goes slow, what can I imagine it too be? Because if I did not put it on a QThread it would act slow just like it is in Krita5 but on every version regardless. If QThread does not work it is just like any other class but on the same thread no? That is why I think it is something related to QThread. Thing is my code for how inefficient it might be it WORKS in QThread normal(no freeze frames) and then is best example to detect problems because it is not efficient. Your arguing the survivors bias. Because I have been searching other ways to render this since my lack of QThread or whatever it is and I have found a new way and is almost in real time now. Not to mention despite my example updating with mouseEvent it only uses the image from one second ago, run sends images on it's own it is not triggered to read by mouseMove. but that is beside the point. If I am 100% sure it is QThread. no I am not, but my testings pointed me in that direction because that QThread class only does one thing. if it is not the QThread it is something inside of it, but everything inside seem to be working normal on their own. I don't think it is fractional UI scaling because my other plugins are working correctly with scaling in this Krita 5 environment and they were severely affected by it in Krita4.4.7. And I scale QImage with them too and did not happen to notice issues with them yet. The things that differs for me here is it being inside the QThread and requesting a Thumbnail that I never used before, but I don't making thumbnails changed.
The link to the example is dead.
Dear Bug Submitter, This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days the bug will be closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging If you have already provided the requested information, please mark the bug as REPORTED so that the KDE team knows that the bug is ready to be confirmed. Thank you for helping us make KDE software even better for everyone!
This bug has been in NEEDSINFO status with no change for at least 30 days. The bug is now closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging Thank you for helping us make KDE software even better for everyone!