Have notes span all columns

Fixes #88
This commit is contained in:
Keith Edmunds 2022-02-05 16:30:52 +00:00
parent e256ceee0f
commit 80126440c8

View File

@ -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):