Change intro gap warning to 300ms

This commit is contained in:
Keith Edmunds 2023-11-16 22:24:37 +00:00
parent 8674e6d5b3
commit a0fa7e455e

View File

@ -2228,7 +2228,7 @@ class PlaylistTab(QTableWidget):
if not start_gap: if not start_gap:
start_gap = 0 start_gap = 0
start_gap_item = self._set_item_text(row_number, START_GAP, str(start_gap)) 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)) brush = QBrush(QColor(Config.COLOUR_LONG_START))
else: else:
brush = QBrush() brush = QBrush()