diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2020-05-31 17:08:01 -0500 |
|---|---|---|
| committer | oldmud0 <oldmud0@users.noreply.github.com> | 2020-05-31 17:08:01 -0500 |
| commit | 8e106c5d21c57cfeb717408321eb579683e5095a (patch) | |
| tree | 0b5adafb7a0311928320422f4bcca84f6e031c52 /src/lobby.cpp | |
| parent | 6dde524a160f445e47edb5c6befb78bfc1092a61 (diff) | |
Fix server list showing in reverse order
Diffstat (limited to 'src/lobby.cpp')
| -rw-r--r-- | src/lobby.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lobby.cpp b/src/lobby.cpp index 33fe7a8b..d6900c63 100644 --- a/src/lobby.cpp +++ b/src/lobby.cpp @@ -483,6 +483,7 @@ void Lobby::list_servers() i++; } ui_server_list->setSortingEnabled(true); + ui_server_list->sortItems(0, Qt::SortOrder::AscendingOrder); } void Lobby::list_favorites() |
