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>GitOptionsDialog</class> <widget class="QDialog" name="GitOptionsDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>565</width> <height>78</height> </rect> </property> <property name="windowTitle"> <string>Initial Commit</string> </property> <property name="whatsThis"> <string><b>Initial Commit Dialog</b> <p>Enter the message for the initial commit.</p></string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="TextLabel5"> <property name="text"> <string>Commit &Message:</string> </property> <property name="buddy"> <cstring>vcsLogEdit</cstring> </property> </widget> </item> <item> <widget class="QLineEdit" name="vcsLogEdit"> <property name="toolTip"> <string>Enter the log message for the new project.</string> </property> <property name="whatsThis"> <string><b>Log Message</b> <p>Enter the log message to be used for the new project.</p></string> </property> <property name="text"> <string>new project started</string> </property> </widget> </item> </layout> </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> <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> <tabstops> <tabstop>vcsLogEdit</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>GitOptionsDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>56</x> <y>68</y> </hint> <hint type="destinationlabel"> <x>51</x> <y>77</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>GitOptionsDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>213</x> <y>68</y> </hint> <hint type="destinationlabel"> <x>205</x> <y>77</y> </hint> </hints> </connection> </connections> </ui>