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>GitCopyDialog</class> <widget class="QDialog" name="GitCopyDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>409</width> <height>138</height> </rect> </property> <property name="windowTitle"> <string>Git Copy</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout"> <item> <layout class="QGridLayout"> <item row="0" column="0"> <widget class="QLabel" name="textLabel1"> <property name="text"> <string>Source:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QLineEdit" name="sourceEdit"> <property name="toolTip"> <string>Shows the name of the source</string> </property> <property name="whatsThis"> <string><b>Source name</b> <p>This field shows the name of the source.</p></string> </property> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> <item row="1" column="1"> <widget class="QLineEdit" name="targetEdit"> <property name="toolTip"> <string>Enter the target name</string> </property> <property name="whatsThis"> <string><b>Target name</b> <p>Enter the new name in this field. The target must be the new name or an absolute path.</p></string> </property> </widget> </item> <item row="1" column="0"> <widget class="QLabel" name="textLabel2"> <property name="text"> <string>Target:</string> </property> </widget> </item> <item row="1" column="2"> <widget class="QToolButton" name="dirButton"> <property name="toolTip"> <string>Press to open a selection dialog</string> </property> <property name="whatsThis"> <string><b>Target directory</b> <p>Select the target name for the operation via a selection dialog.</p></string> </property> </widget> </item> </layout> </item> <item> <widget class="QCheckBox" name="forceCheckBox"> <property name="toolTip"> <string>Select to force the operation</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> <pixmapfunction>qPixmapFromMimeSource</pixmapfunction> <tabstops> <tabstop>targetEdit</tabstop> <tabstop>dirButton</tabstop> <tabstop>forceCheckBox</tabstop> <tabstop>buttonBox</tabstop> <tabstop>sourceEdit</tabstop> </tabstops> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>GitCopyDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>32</x> <y>79</y> </hint> <hint type="destinationlabel"> <x>32</x> <y>97</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>GitCopyDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>101</x> <y>80</y> </hint> <hint type="destinationlabel"> <x>101</x> <y>97</y> </hint> </hints> </connection> </connections> </ui>