Removed queue tab for now
All checks were successful
Check / mypy (push) Successful in 29s
Check / ruff (push) Successful in 6s

This commit is contained in:
Christoph Stahl 2025-06-23 18:40:40 +02:00
parent a180d12f7e
commit b48c0ca345

View file

@ -904,9 +904,9 @@ class SyngGui(QMainWindow):
config = self.gather_config() config = self.gather_config()
self.client = Client(config) self.client = Client(config)
asyncio.run_coroutine_threadsafe(self.client.start_client(config), self.loop) asyncio.run_coroutine_threadsafe(self.client.start_client(config), self.loop)
model = QueueModel(self.client.state.queue) # model = QueueModel(self.client.state.queue)
self.queue_list_view.setModel(model) # self.queue_list_view.setModel(model)
self.client.add_queue_callback(model.update) # self.client.add_queue_callback(model.update)
self.timer.start(500) self.timer.start(500)
self.set_client_button_stop() self.set_client_button_stop()
else: else: