2023-01-27 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdcastmanager(1) that caused podcast items
	to fail to be sorted chronologically by default.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2023-01-27 13:45:53 -05:00
parent 3bebeee906
commit 0d38cc7224
2 changed files with 4 additions and 0 deletions

View File

@ -23952,3 +23952,6 @@
* Fixed a bug in rdlogmanager(1) that caused the slop factors for
inline traffic events to fail to be applied when importing a traffic
log.
2023-01-27 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcastmanager(1) that caused podcast items
to fail to be sorted chronologically by default.

View File

@ -86,6 +86,7 @@ ListCasts::ListCasts(unsigned feed_id,QWidget *parent)
list_casts_model=new RDPodcastListModel(feed_id,this);
list_casts_model->setFont(font());
list_casts_model->setPalette(palette());
list_casts_model->sort(2,Qt::DescendingOrder);
list_casts_view->setModel(list_casts_model);
connect(list_casts_model,SIGNAL(modelReset()),this,SLOT(modelResetData()));
connect(list_casts_model,SIGNAL(rowsInserted(const QModelIndex &,int,int)),