From 3eb8b9ef681e9e73b42f7d9af807c066274b928f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 10 Mar 2015 21:06:53 +0100 Subject: [PATCH] calendar: Fix thinko Without an explicit index, messages should be added at the end of the list. https://bugzilla.gnome.org/show_bug.cgi?id=745988 --- js/ui/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/calendar.js b/js/ui/calendar.js index b6f1cb157..22c0c2c13 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -1289,7 +1289,7 @@ const MessageListSection = new Lang.Class({ }, addMessage: function(message, animate) { - this.addMessageAtIndex(message, 0, animate); + this.addMessageAtIndex(message, -1, animate); }, addMessageAtIndex: function(message, index, animate) {