Skip to content

Commit

Permalink
Revert "don't sort user profiles by serial number, sort alphabetically"
Browse files Browse the repository at this point in the history
This reverts commit 1db20a2.
  • Loading branch information
thestinger committed May 1, 2023
1 parent 23b0e5e commit 3cb122e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/android/settings/users/UserSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,8 @@ void updateUserList() {
}


Collections.sort(userPreferences);
// Sort list of users by serialNum
Collections.sort(userPreferences, UserPreference.SERIAL_NUMBER_COMPARATOR);

getActivity().invalidateOptionsMenu();

Expand Down

0 comments on commit 3cb122e

Please sign in to comment.