Skip to content
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

PathColumn : Allow sorting of FileIconPathColumn #6012

Merged

Commits on Sep 4, 2024

  1. PathColumn : Allow sorting of FileIconPathColumn

    Sorting by file extension is an approximation of sorting by file type, but is likely enough for our purposes.
    
    `std::filesystem::path::extension()` returns the last part of the filename from the rightmost `.`, which means "foo.tar.gz" will sort with "foo.gz", but this is preferable to a more greedy approach that would treat "foo.0001.exr" as having an extension of "0001.exr".
    murraystevenson committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    e0055bc View commit details
    Browse the repository at this point in the history