fix(ui): add missing QComboBox import in accessories_selector.py
Selector dialog was failing to open due to NameError on QComboBox.
This commit is contained in:
parent
36bc075e95
commit
4d7d4e7545
|
|
@ -7,7 +7,7 @@ from decimal import Decimal
|
||||||
from PyQt6.QtWidgets import (
|
from PyQt6.QtWidgets import (
|
||||||
QDialog, QVBoxLayout, QHBoxLayout, QLineEdit, QPushButton,
|
QDialog, QVBoxLayout, QHBoxLayout, QLineEdit, QPushButton,
|
||||||
QTreeWidget, QTreeWidgetItem, QHeaderView, QLabel, QDialogButtonBox,
|
QTreeWidget, QTreeWidgetItem, QHeaderView, QLabel, QDialogButtonBox,
|
||||||
QProgressBar, QGroupBox, QFormLayout, QTabWidget, QWidget
|
QProgressBar, QGroupBox, QFormLayout, QTabWidget, QWidget, QComboBox
|
||||||
)
|
)
|
||||||
from PyQt6.QtCore import Qt, QThread, pyqtSignal
|
from PyQt6.QtCore import Qt, QThread, pyqtSignal
|
||||||
from PyQt6.QtGui import QColor
|
from PyQt6.QtGui import QColor
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue