From ec944d38ea264ddfd45a9bd21844cc6939a4a037 Mon Sep 17 00:00:00 2001 From: tyler Date: Fri, 13 Mar 2026 22:01:53 -0700 Subject: [PATCH] fixes for crashes in standalone --- main.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index c6a61ca..7d3f2b7 100644 --- a/main.py +++ b/main.py @@ -1968,7 +1968,7 @@ class PremiereWindow(QMainWindow): fps=self.current_video_fps ) - print(f"✅ Timeline synced with {actual_offset}s offset.") + print(f"Timeline synced with {actual_offset}s offset.") else: print(f"DEBUG: No offset found for index {found_index}") @@ -1984,8 +1984,7 @@ class PremiereWindow(QMainWindow): # QMessageBox.Yes | QMessageBox.No) # use_cache = cache_path if reply == QMessageBox.Yes else None - self.btn_load.setEnabled(False) - + # Pass the observation info to the worker self.worker = PoseAnalyzerWorker(self.file_path, self.selected_obs_subkey, self.predictor) self.worker.progress.connect(self.update_status)