Revert "removed leading space from directories, as this will make navigation slightly faster"

This reverts commit 823debcc04.
This commit is contained in:
thrust26 2017-12-01 13:59:38 +01:00
parent 823debcc04
commit 3a136b4284
3 changed files with 6 additions and 10 deletions

View File

@ -31,10 +31,6 @@ void GameList::sortByName()
auto cmp = [](const Entry& a, const Entry& b)
{
// directories always first
if(a._isdir != b._isdir)
return a._isdir;
auto it1 = a._name.cbegin(), it2 = b._name.cbegin();
// Account for ending ']' character in directory entries