Qt: sort the game list case insensitive initially

This commit is contained in:
Megamouse 2018-03-18 21:56:45 +01:00 committed by Ivan
parent 9f1fe5775e
commit 9fcba58537

View file

@ -397,7 +397,7 @@ void game_list_frame::Refresh(const bool fromDrive, const bool scrollAfter)
auto op = [](const GUI_GameInfo& game1, const GUI_GameInfo& game2)
{
return game1.info.name < game2.info.name;
return qstr(game1.info.name).toLower() < qstr(game2.info.name).toLower();
};
// Sort by name at the very least.