Skip to content

Commit 666185c

Browse files
authored
[Fonts] Fix icons sorting (flutter#86434)
* Fix sorting * Update icons.dart
1 parent 57a4b02 commit 666185c

File tree

2 files changed

+2767
-2767
lines changed

2 files changed

+2767
-2767
lines changed

dev/tools/update_icons.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ class _Icon {
393393
if (shortId == b.shortId) {
394394
return id.length - b.id.length;
395395
}
396-
return flutterId.compareTo(b.flutterId);
396+
return shortId.compareTo(b.shortId);
397397
}
398398

399399
String _replaceLast(String string, String toReplace) {

0 commit comments

Comments
 (0)