From 4b27b119c113cdef4616bbe714be875c59f9fe74 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Wed, 7 Sep 2022 12:17:11 -0400 Subject: [PATCH] 2022-09-07 Fred Gleason * Fixed a regression in rdcatch(1) that broke operation of the head and tail audition buttons. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ rdcatch/recordlistmodel.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index df088d64..631cbcc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -23261,3 +23261,6 @@ 2022-09-06 Fred Gleason * Fixed a bug in rdservice(8) that could cause a segfault when started with a previous instance running. +2022-09-07 Fred Gleason + * Fixed a regression in rdcatch(1) that broke operation of the + head and tail audition buttons. diff --git a/rdcatch/recordlistmodel.cpp b/rdcatch/recordlistmodel.cpp index d23e4c91..29d6ee64 100644 --- a/rdcatch/recordlistmodel.cpp +++ b/rdcatch/recordlistmodel.cpp @@ -301,7 +301,7 @@ QString RecordListModel::hostName(const QModelIndex &row) const QString RecordListModel::cutName(const QModelIndex &row) const { - return d_texts.at(row.row()).at(25).toString(); + return d_texts.at(row.row()).at(26).toString(); }