Skip to content

Commit

Permalink
Merge pull request #3440 from deltachat/hoc/reverse-notification-inbox
Browse files Browse the repository at this point in the history
Reverse order of the tiny inbox in notifications
  • Loading branch information
adbenitez authored Nov 24, 2024
2 parents 0b2a26e + 8283a6c commit d5ea043
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ private void maybeAddNotification(int accountId, DcChat dcChat, int msgId, Strin
}
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));
}
}
Expand Down

0 comments on commit d5ea043

Please sign in to comment.