Merge pull request #3440 from deltachat/hoc/reverse-notification-inbox

Reverse order of the tiny inbox in notifications
This commit is contained in:
adb
2024-11-24 21:20:34 +01:00
committed by GitHub
@@ -528,7 +528,7 @@ public class NotificationCenter {
}
lines.add(tickerLine);
for (int l = lines.size() - 1; l >= 0; l--) {
for (int l = 0; l < lines.size(); l++) {
inboxStyle.addLine(lines.get(l));
}
}