tablacus / TablacusExplorer

A tabbed file manager with Add-on support
https://tablacus.github.io/explorer_en.html
MIT License
969 stars 102 forks source link

Resizing window is laggy #768

Open KnIfER opened 2 months ago

KnIfER commented 2 months ago

It seems that TE will trigger findfiles and rescan the directory when the window size changes?

KnIfER commented 2 months ago

caused by addon : addressbar Sync.AddressBar.SplitPath

https://github.com/tablacus/TablacusExplorerAddons/blob/6647964b9ed66c28ba2bcd84ab1abf93789d9f48/addressbar/sync.js#L18

 next: n || api.GetAttributesOf(FolderItem, SFGAO_HASSUBFOLDER),

here, SFGAO_HASSUBFOLDER will trigger a full-scan of current folder (when n==0)

tablacus commented 2 months ago

Thank you for valuable information.