Add window title param

This commit is contained in:
CPD 2025-03-04 17:52:48 +01:00
parent e85b5bc0d4
commit 18b842c429

View File

@ -3,9 +3,9 @@ from typing import Callable
# QT6 non-window that presents a list of devices of which one can be connected
class ListChoice(QDialog):
def __init__(self, items: dict[str, list[str]], parent=None):
def __init__(self, items: dict[str, list[str]], parent=None, window_title="Select Device"):
super().__init__(parent)
self.setWindowTitle("Select Device")
self.setWindowTitle(window_title)
self.setLayout(QVBoxLayout())
self.layout().addWidget(QLabel("Select a device to connect to:"))
self.device_list = QListWidget()