Compare commits
3 Commits
bcb8a95969
...
6fc6fbe0d0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6fc6fbe0d0 | ||
|
|
e689c9afeb | ||
|
|
a0fa7e455e |
@ -2228,7 +2228,7 @@ class PlaylistTab(QTableWidget):
|
||||
if not start_gap:
|
||||
start_gap = 0
|
||||
start_gap_item = self._set_item_text(row_number, START_GAP, str(start_gap))
|
||||
if start_gap >= 500:
|
||||
if start_gap >= 300:
|
||||
brush = QBrush(QColor(Config.COLOUR_LONG_START))
|
||||
else:
|
||||
brush = QBrush()
|
||||
|
||||
@ -75,7 +75,13 @@ def main():
|
||||
continue
|
||||
new_tags = get_tags(new_path)
|
||||
new_title = new_tags["title"]
|
||||
if not new_title:
|
||||
print(f"{new_fname} does not have a title tag")
|
||||
sys.exit(1)
|
||||
new_artist = new_tags["artist"]
|
||||
if not new_artist:
|
||||
print(f"{new_fname} does not have an artist tag")
|
||||
sys.exit(1)
|
||||
bitrate = new_tags["bitrate"]
|
||||
|
||||
# If same filename exists in parent direcory, check tags
|
||||
|
||||
Loading…
Reference in New Issue
Block a user