diff -r 24e1beb8779a -r fd914f897dcf src/eric7/MicroPython/BluetoothDialogs/Ui_BluetoothStatusDialog.py --- a/src/eric7/MicroPython/BluetoothDialogs/Ui_BluetoothStatusDialog.py Thu Mar 06 17:44:49 2025 +0100 +++ b/src/eric7/MicroPython/BluetoothDialogs/Ui_BluetoothStatusDialog.py Sun Mar 09 14:16:35 2025 +0100 @@ -1,6 +1,6 @@ # Form implementation generated from reading ui file 'src/eric7/MicroPython/BluetoothDialogs/BluetoothStatusDialog.ui' # -# Created by: PyQt6 UI code generator 6.7.0 +# Created by: PyQt6 UI code generator 6.8.1 # # WARNING: Any manual changes made to this file will be lost when pyuic6 is # run again. Do not edit this file unless you know what you are doing. @@ -31,18 +31,27 @@ self.statusTree.setObjectName("statusTree") self.statusTree.headerItem().setText(0, "1") self.verticalLayout.addWidget(self.statusTree) + self.horizontalLayout = QtWidgets.QHBoxLayout() + self.horizontalLayout.setObjectName("horizontalLayout") + self.refreshButton = QtWidgets.QPushButton(parent=BluetoothStatusDialog) + self.refreshButton.setObjectName("refreshButton") + self.horizontalLayout.addWidget(self.refreshButton) self.buttonBox = QtWidgets.QDialogButtonBox(parent=BluetoothStatusDialog) self.buttonBox.setOrientation(QtCore.Qt.Orientation.Horizontal) self.buttonBox.setStandardButtons(QtWidgets.QDialogButtonBox.StandardButton.Close) self.buttonBox.setObjectName("buttonBox") - self.verticalLayout.addWidget(self.buttonBox) + self.horizontalLayout.addWidget(self.buttonBox) + self.verticalLayout.addLayout(self.horizontalLayout) self.retranslateUi(BluetoothStatusDialog) self.buttonBox.accepted.connect(BluetoothStatusDialog.accept) # type: ignore self.buttonBox.rejected.connect(BluetoothStatusDialog.reject) # type: ignore QtCore.QMetaObject.connectSlotsByName(BluetoothStatusDialog) + BluetoothStatusDialog.setTabOrder(self.statusTree, self.refreshButton) def retranslateUi(self, BluetoothStatusDialog): _translate = QtCore.QCoreApplication.translate BluetoothStatusDialog.setWindowTitle(_translate("BluetoothStatusDialog", "Bluetooth Status")) self.label.setText(_translate("BluetoothStatusDialog", "Bluetooth Status")) + self.refreshButton.setToolTip(_translate("BluetoothStatusDialog", "Press to refresh the status display.")) + self.refreshButton.setText(_translate("BluetoothStatusDialog", "Refresh"))