From cf4d06db16e21dbef92a53763820c11db319a9e8 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Tue, 28 Nov 2023 14:36:12 +0000 Subject: [PATCH] V3 tidying --- app/playlistmodel.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/playlistmodel.py b/app/playlistmodel.py index f6335b1..ab797a3 100644 --- a/app/playlistmodel.py +++ b/app/playlistmodel.py @@ -1386,7 +1386,6 @@ class PlaylistProxyModel(QSortFilterProxyModel): and previous_plr.plr_rownum == source_row and previous_plr.playlist_id == self.data_model.playlist_id ): - print("Checking previous track") if track_sequence.now.start_time: if datetime.now() > ( track_sequence.now.start_time @@ -1402,7 +1401,6 @@ class PlaylistProxyModel(QSortFilterProxyModel): # so that it hides then - add 100mS # on so that it if clause above it # true next time through. - print("queuing singleshot") QTimer.singleShot( Config.HIDE_AFTER_PLAYING_OFFSET + 100, lambda: self.data_model.invalidate_row(source_row),