From 1c1532e9e0e95fed0f98a1d3ec912a19fe19b15f Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Wed, 9 Oct 2024 02:29:36 -0300 Subject: [PATCH] remove the seconds removes the seconds from the screen, but in the play_time.txt file it continues to record the seconds for better accuracy, and the screen is cleaner --- src/qt_gui/game_list_frame.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/qt_gui/game_list_frame.cpp b/src/qt_gui/game_list_frame.cpp index acd486aee..1b8597a66 100644 --- a/src/qt_gui/game_list_frame.cpp +++ b/src/qt_gui/game_list_frame.cpp @@ -119,9 +119,6 @@ void GameListFrame::PopulateGameList() { if (minutes > 0) { formattedPlayTime += QString("%1m ").arg(minutes); } - if (seconds > 0 || formattedPlayTime.isEmpty()) { - formattedPlayTime += QString("%1s").arg(seconds); - } formattedPlayTime = formattedPlayTime.trimmed(); m_game_info->m_games[i].play_time = playTime.toStdString();