mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
Merge pull request #3440 from deltachat/hoc/reverse-notification-inbox
Reverse order of the tiny inbox in notifications
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user