You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A forum user reported that on slower machines drawing progress bars for a torrent of a dozen files makes Tribler unresponsive. That is confirmed on my developer machine with some testing. The problem is, we're using QTreeWidget, which becomes super-slow when replacing any column with a widget (such as a progress bar). To solve the problem, we must refactor the Details tab to use QT's Model-View-Delegate pattern.
The text was updated successfully, but these errors were encountered:
We could still optimize the piece retrieval further to also make the piece information on the "main" details tab more efficient. However, that's probably best left to a separate "enhancement" issue instead of a "bug".
A forum user reported that on slower machines drawing progress bars for a torrent of a dozen files makes Tribler unresponsive. That is confirmed on my developer machine with some testing. The problem is, we're using
QTreeWidget
, which becomes super-slow when replacing any column with a widget (such as a progress bar). To solve the problem, we must refactor the Details tab to use QT's Model-View-Delegate pattern.The text was updated successfully, but these errors were encountered: