diff --git a/app/playlists.py b/app/playlists.py index b378554..43369dc 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -1051,6 +1051,10 @@ class PlaylistTab(QTableWidget): # Set start time self._set_row_start_time( row, self.current_track_start_time) + last_played_str = get_relative_date( + self.current_track_start_time) + self.item(row, self.COL_LAST_PLAYED).setText( + last_played_str) # Calculate next_start_time next_start_time = self._calculate_next_start_time( session, row, self.current_track_start_time)