Wed, 04 Oct 2023 17:50:59 +0200
Fixed in issue with several editable combo box selectors, that the value could not be changed if the edited text differed by case only. This was caused by the standard QComboBox completer.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>GitSubmodulesDeinitDialog</class> <widget class="QDialog" name="GitSubmodulesDeinitDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>400</width> <height>300</height> </rect> </property> <property name="windowTitle"> <string>Unregister Submodules</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QCheckBox" name="allCheckBox"> <property name="toolTip"> <string>Select to unregister all submodules</string> </property> <property name="text"> <string>Unregister All Submodules</string> </property> </widget> </item> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Selected Submodules:</string> </property> </widget> </item> <item> <widget class="QListWidget" name="submodulesList"> <property name="toolTip"> <string>Select the submodules to be unregistered</string> </property> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::ExtendedSelection</enum> </property> </widget> </item> <item> <widget class="QCheckBox" name="forceCheckBox"> <property name="toolTip"> <string>Select to enforce unregistering</string> </property> <property name="text"> <string>Enforce Operation</string> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>allCheckBox</tabstop> <tabstop>submodulesList</tabstop> <tabstop>forceCheckBox</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>GitSubmodulesDeinitDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>227</x> <y>282</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>GitSubmodulesDeinitDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>295</x> <y>288</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>allCheckBox</sender> <signal>toggled(bool)</signal> <receiver>label</receiver> <slot>setDisabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>39</x> <y>15</y> </hint> <hint type="destinationlabel"> <x>37</x> <y>39</y> </hint> </hints> </connection> <connection> <sender>allCheckBox</sender> <signal>toggled(bool)</signal> <receiver>submodulesList</receiver> <slot>setDisabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>76</x> <y>16</y> </hint> <hint type="destinationlabel"> <x>82</x> <y>73</y> </hint> </hints> </connection> </connections> </ui>