Show new Entries when updating

This commit is contained in:
Tobias Fella 2020-05-10 19:58:07 +02:00
parent f761ca437b
commit fdc92f7ff2

View File

@ -32,6 +32,10 @@ EntryListModel::EntryListModel(QObject *parent)
setSort(Updated, Qt::DescendingOrder);
setEditStrategy(OnFieldChange);
select();
connect(&Fetcher::instance(), &Fetcher::updated, this, [this] () {
select();
});
}
QVariant EntryListModel::data(const QModelIndex &index, int role) const