From 5c3d32563049a64585acb883043db0afe2208af2 Mon Sep 17 00:00:00 2001 From: "Stiliyan Tonev (Bark)" Date: Fri, 9 May 2025 11:04:18 +0300 Subject: [PATCH] Fix case order --- src/gui/transferlistmodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/transferlistmodel.cpp b/src/gui/transferlistmodel.cpp index 1e9324cfc..229a9dd95 100644 --- a/src/gui/transferlistmodel.cpp +++ b/src/gui/transferlistmodel.cpp @@ -202,8 +202,8 @@ QVariant TransferListModel::headerData(const int section, const Qt::Orientation { switch (section) { - case TR_POPULARITY: return tr("Ratio / Time Active (in months), indicates how popular the torrent is"); case TR_PERCENT_SELECTED: return tr("Wanted / Total size, indicates percentage of selected data to download"); + case TR_POPULARITY: return tr("Ratio / Time Active (in months), indicates how popular the torrent is"); default: return {}; } }