From 6f90d33f3a475da9a21fac06fa512639b7fac979 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Mon, 15 May 2023 21:48:28 +0200 Subject: [PATCH] Add new messages to bottom of notifications list --- src/notificationsmanager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/notificationsmanager.cpp b/src/notificationsmanager.cpp index 194821b08..a79296529 100644 --- a/src/notificationsmanager.cpp +++ b/src/notificationsmanager.cpp @@ -74,7 +74,7 @@ void NotificationsManager::postNotification(NeoChatRoom *room, entry = i18n("%1: %2", sender, text.toHtmlEscaped()); } - notification->setText(entry + '\n' + notification->text()); + notification->setText(notification->text() + '\n' + entry); notification->setPixmap(QPixmap::fromImage(icon)); notification->setDefaultAction(i18n("Open NeoChat in this room"));