Add new messages to bottom of notifications list

This commit is contained in:
Tobias Fella
2023-05-15 21:48:28 +02:00
parent 3bb0ee17cd
commit 6f90d33f3a

View File

@@ -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"));