diff options
| author | lempamo <[email protected]> | 2017-02-26 18:22:53 -0500 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-02-26 18:22:53 -0500 |
| commit | 8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf (patch) | |
| tree | e637f4e3280ff76e163534b112a59c2230fc1c82 | |
| parent | 077e0e527106a6d6ab27b31dc07cfd980198d757 (diff) | |
| parent | e9acecf0deada4b3adb54000900d26b40fa1d930 (diff) | |
| download | shiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.tar.gz shiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.tar.bz2 shiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.zip | |
Merge remote-tracking branch 'refs/remotes/shiftos-game/master'
| -rw-r--r-- | ShiftOS.WinForms/Applications/Notifications.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/Applications/Notifications.cs b/ShiftOS.WinForms/Applications/Notifications.cs index 3ce3e58..9ed3587 100644 --- a/ShiftOS.WinForms/Applications/Notifications.cs +++ b/ShiftOS.WinForms/Applications/Notifications.cs @@ -32,7 +32,7 @@ namespace ShiftOS.WinForms.Applications fllist.Controls.Clear(); bool showNoNotes = true; - foreach (var note in NotificationDaemon.GetAllFromFile()) + foreach (var note in new List<Notification>(NotificationDaemon.GetAllFromFile()).OrderByDescending(n => n.Timestamp)) { if (note.Read == false) { |
