From 34783c10fed69df4a0396eec4b574f44d147852a Mon Sep 17 00:00:00 2001 From: Anceph <41387237+Anceph@users.noreply.github.com> Date: Wed, 24 Jun 2026 00:49:43 +0300 Subject: [PATCH] Remove the comment Signed-off-by: Anceph <41387237+Anceph@users.noreply.github.com> --- launcher/ui/instanceview/InstanceProxyModel.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/launcher/ui/instanceview/InstanceProxyModel.cpp b/launcher/ui/instanceview/InstanceProxyModel.cpp index ea3a2b0fd..f28149a56 100644 --- a/launcher/ui/instanceview/InstanceProxyModel.cpp +++ b/launcher/ui/instanceview/InstanceProxyModel.cpp @@ -64,7 +64,6 @@ bool InstanceProxyModel::subSortLessThan(const QModelIndex& left, const QModelIn return pdataLeft->lastLaunch() > pdataRight->lastLaunch(); } else if (sortMode == "Playtime") { if (pdataLeft->totalTimePlayed() == pdataRight->totalTimePlayed()) { - // fallback to name sorting if playtime is equal return m_naturalSort.compare(pdataLeft->name(), pdataRight->name()) < 0; } return pdataLeft->totalTimePlayed() > pdataRight->totalTimePlayed();