ui changes

This commit is contained in:
zanostro 2025-12-05 19:00:11 +01:00
parent 1fb7d52842
commit d3ab78e76c
6 changed files with 131 additions and 17 deletions

View file

@ -42,8 +42,13 @@ void MachineController::runLoop() {
try {
if (m_machine) {
m_machine->execute();
m_machine->tick();
m_machine->tick();
emit tick();
if (m_machine->isStopped()) {
m_running.store(false);
break;
}
}
} catch (const std::exception &e) {
emit error(QString::fromStdString(e.what()));