aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.WinForms/Applications/Notifications.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-02-26 18:22:53 -0500
committerlempamo <[email protected]>2017-02-26 18:22:53 -0500
commit8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf (patch)
treee637f4e3280ff76e163534b112a59c2230fc1c82 /ShiftOS.WinForms/Applications/Notifications.cs
parent077e0e527106a6d6ab27b31dc07cfd980198d757 (diff)
parente9acecf0deada4b3adb54000900d26b40fa1d930 (diff)
downloadshiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.tar.gz
shiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.tar.bz2
shiftos_thereturn-8f72641e2a6f262d4fc9ee5d9a46f044a00a51bf.zip
Merge remote-tracking branch 'refs/remotes/shiftos-game/master'
Diffstat (limited to 'ShiftOS.WinForms/Applications/Notifications.cs')
-rw-r--r--ShiftOS.WinForms/Applications/Notifications.cs2
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)
{