From 80126440c84f762e0c95d5060e76eec93edfd3ed Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sat, 5 Feb 2022 16:30:52 +0000 Subject: [PATCH] Have notes span all columns Fixes #88 --- app/playlists.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/playlists.py b/app/playlists.py index 8ca833b..81e373f 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -40,8 +40,9 @@ class PlaylistTab(QTableWidget): COL_START_TIME = 5 COL_END_TIME = 6 COL_LAST_PLAYED = 7 + COL_LAST = 7 - NOTE_COL_SPAN = 4 + NOTE_COL_SPAN = COL_LAST - COL_NOTE + 1 NOTE_ROW_SPAN = 1 def __init__(self, *args, **kwargs):