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>GitSubmodulesStatusDialog</class> <widget class="QDialog" name="GitSubmodulesStatusDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>700</width> <height>400</height> </rect> </property> <property name="windowTitle"> <string>Submodules Status</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QTreeWidget" name="statusList"> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="itemsExpandable"> <bool>false</bool> </property> <column> <property name="text"> <string>Submodule</string> </property> </column> <column> <property name="text"> <string>Status</string> </property> </column> <column> <property name="text"> <string>Commit ID</string> </property> </column> <column> <property name="text"> <string>Info</string> </property> </column> </widget> </item> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QCheckBox" name="indexCheckBox"> <property name="toolTip"> <string>Select to show the status for the index</string> </property> <property name="text"> <string>Show Status for Index</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="recursiveCheckBox"> <property name="toolTip"> <string>Perform a recursive operation</string> </property> <property name="text"> <string>Recursive</string> </property> </widget> </item> <item> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> </layout> </item> <item> <widget class="QGroupBox" name="errorGroup"> <property name="sizePolicy"> <sizepolicy hsizetype="Preferred" vsizetype="Expanding"> <horstretch>0</horstretch> <verstretch>1</verstretch> </sizepolicy> </property> <property name="title"> <string>Errors</string> </property> <layout class="QVBoxLayout"> <item> <widget class="QTextEdit" name="errors"> <property name="readOnly"> <bool>true</bool> </property> <property name="acceptRichText"> <bool>false</bool> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>statusList</tabstop> <tabstop>indexCheckBox</tabstop> <tabstop>recursiveCheckBox</tabstop> <tabstop>errors</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>GitSubmodulesStatusDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>248</x> <y>254</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>GitSubmodulesStatusDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>