fix direction dependent thichness
This commit is contained in:
@ -26,7 +26,7 @@ class FileChangeNotifier extends ChangeNotifier {
|
||||
return NoteTileData(name, filename, lastmodified);
|
||||
}).toList();
|
||||
dta.sort(
|
||||
(a, b) => a.lastModified.isAfter(b.lastModified) ? -1 : 1,
|
||||
(a, b) => a.lastModified.compareTo(b.lastModified),
|
||||
);
|
||||
notifyListeners();
|
||||
tiledata = dta;
|
||||
|
Reference in New Issue
Block a user