Speed up changing to tab with lots of tracks

Fixes: #219
This commit is contained in:
Keith Edmunds 2024-01-19 10:16:28 +00:00
parent 2ecb67629e
commit af6e0f69be

View File

@ -1493,7 +1493,7 @@ class Window(QMainWindow, Ui_MainWindow):
tab = self.active_tab() tab = self.active_tab()
if tab: if tab:
tab.resizeRowsToContents() QTimer.singleShot(300, tab.resizeRowsToContents)
def tick_10ms(self) -> None: def tick_10ms(self) -> None:
""" """