Sat, 02 Dec 2023 12:19:16 +0100
Fixed an issue in the MicroPython UF2 Flash dialog causing the wrong instructions being show in certain situations.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>BluetoothScanWindow</class> <widget class="QWidget" name="BluetoothScanWindow"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>650</width> <height>600</height> </rect> </property> <property name="windowTitle"> <string>Bluetooth Scan</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QTreeWidget" name="devicesList"> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::NoSelection</enum> </property> <property name="sortingEnabled"> <bool>true</bool> </property> <column> <property name="text"> <string>Name</string> </property> </column> <column> <property name="text"> <string>MAC-Address</string> </property> </column> <column> <property name="text"> <string>RSSI [dBm]</string> </property> </column> <column> <property name="text"> <string notr="true"/> </property> </column> </widget> </item> <item> <widget class="QLabel" name="statusLabel"/> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Scan Duration:</string> </property> </widget> </item> <item> <widget class="QSpinBox" name="durationSpinBox"> <property name="toolTip"> <string>Enter the scan duration in seconds</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="suffix"> <string> s</string> </property> <property name="minimum"> <number>1</number> </property> <property name="maximum"> <number>60</number> </property> <property name="value"> <number>10</number> </property> </widget> </item> <item> <widget class="QPushButton" name="scanButton"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Fixed"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="toolTip"> <string>Press to scan for Bluetooth devices.</string> </property> <property name="text"> <string>Scan</string> </property> </widget> </item> </layout> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>devicesList</tabstop> <tabstop>durationSpinBox</tabstop> <tabstop>scanButton</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>BluetoothScanWindow</receiver> <slot>close()</slot> <hints> <hint type="sourcelabel"> <x>486</x> <y>581</y> </hint> <hint type="destinationlabel"> <x>647</x> <y>534</y> </hint> </hints> </connection> </connections> </ui>