mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
fix(components/timeline): use correct display order
This commit is contained in:
parent
57813f0088
commit
bfe32c4404
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ TimelineModel::TimelineModel (QObject *parent): QAbstractListModel(parent) {
|
|||
return lower_bound(
|
||||
start ? *start : m_entries.begin(), m_entries.end(), map,
|
||||
[](const QVariantMap &a, const QVariantMap &b) {
|
||||
return a["timestamp"] < b["timestamp"];
|
||||
return a["timestamp"] > b["timestamp"];
|
||||
}
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue