diff --git a/ChangeLog b/ChangeLog index c275e053..efac9e16 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 + * Fixed a regression in rdcastmanager(1) that caused podcast items + to fail to be sorted chronologically by default. diff --git a/rdcastmanager/list_casts.cpp b/rdcastmanager/list_casts.cpp index 90d7b4b4..59d5f42d 100644 --- a/rdcastmanager/list_casts.cpp +++ b/rdcastmanager/list_casts.cpp @@ -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)),