-
Notifications
You must be signed in to change notification settings - Fork 818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FolderStatusModel: only create a single QFileIconProvider object #7899
FolderStatusModel: only create a single QFileIconProvider object #7899
Conversation
/backport to stable-3.16 |
11e10c1
to
3f4a987
Compare
otherwise the icons will end up being loaded from the system each time, which on Windows takes quite long (I saw many calls to `shell32.dll!SHDefExtractIcon` during profiling) Signed-off-by: Jyrki Gadinger <[email protected]>
3f4a987
to
df4a8e9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
Artifact containing the AppImage: nextcloud-appimage-pr-7899.zip SHA256 checksum: To test this change/fix you can download the above artifact file, unzip it, and run it. Please make sure to quit your existing Nextcloud app and backup your data. |
|
otherwise the icons will end up being loaded from the system each time, which on Windows takes quite long (I saw many calls to
shell32.dll!SHDefExtractIcon
during profiling)Fixes #7372, tested on Win11, Linux, macOS