Compare commits

..

No commits in common. "e711ab84abf6cc2aa601f340e13591d928c75bd3" and "861881319704768550da365865d12437bdf0b671" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -984,7 +984,7 @@ class Window(QMainWindow, Ui_MainWindow):
# seconds of playback. Re-enable in update_clocks. # seconds of playback. Re-enable in update_clocks.
self.timer10.stop() self.timer10.stop()
log.debug("10ms timer disabled") log.debug("10ms timer disabled", 0)
# If there's currently a track playing, fade it. # If there's currently a track playing, fade it.
if track_sequence.current: if track_sequence.current:

View File

@ -283,7 +283,7 @@ class PlaylistTab(QTableView):
else: else:
proxy_index = to_index proxy_index = to_index
to_model_row = self.proxy_model.mapToSource(proxy_index).row() to_model_row = self.proxy_model.mapToSource(proxy_index).row()
log.debug( log.info(
f"PlaylistTab.dropEvent(): {from_rows=}, {proxy_index=}, {to_model_row=}" f"PlaylistTab.dropEvent(): {from_rows=}, {proxy_index=}, {to_model_row=}"
) )