From 03d3332b351f5a5475d792c8f9ce676538b35b8e Mon Sep 17 00:00:00 2001 From: bartool Date: Tue, 12 May 2026 19:52:59 +0200 Subject: [PATCH] fix: correct import statement for QVideoWidget in main_window.py --- app/ui/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/ui/main_window.py b/app/ui/main_window.py index 3b143ac..64666f2 100644 --- a/app/ui/main_window.py +++ b/app/ui/main_window.py @@ -5,7 +5,7 @@ from __future__ import annotations import logging from PySide6.QtCore import Qt, QTimer -from PySide6.QtMultimedia import QVideoWidget +from PySide6.QtMultimediaWidgets import QVideoWidget from PySide6.QtWidgets import QLabel, QMainWindow, QSizePolicy, QStatusBar from app.camera.camera_enumerator import CameraEnumerator, CameraInfo