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>GitWorktreeDialog</class> <widget class="QWidget" name="GitWorktreeDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>800</width> <height>500</height> </rect> </property> <property name="windowTitle"> <string>Git Worktree</string> </property> <property name="sizeGripEnabled" stdset="0"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QToolButton" name="actionsButton"> <property name="toolTip"> <string>Select action from menu</string> </property> <property name="popupMode"> <enum>QToolButton::InstantPopup</enum> </property> </widget> </item> <item> <spacer name="horizontalSpacer_2"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>40</width> <height>20</height> </size> </property> </spacer> </item> <item> <widget class="QCheckBox" name="expireCheckBox"> <property name="toolTip"> <string>Select to annotate missing worktrees older than the entered date and time as prunable.</string> </property> <property name="text"> <string>Expire:</string> </property> </widget> </item> <item> <widget class="QDateTimeEdit" name="expireDateTimeEdit"> <property name="enabled"> <bool>false</bool> </property> <property name="toolTip"> <string>All missing worktrees older than the entered date and time will be annotated as prunable.</string> </property> <property name="displayFormat"> <string>yyyy-MM-dd HH:mm:ss</string> </property> <property name="calendarPopup"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QTreeWidget" name="worktreeList"> <property name="sizePolicy"> <sizepolicy hsizetype="Expanding" vsizetype="Expanding"> <horstretch>0</horstretch> <verstretch>2</verstretch> </sizepolicy> </property> <property name="alternatingRowColors"> <bool>true</bool> </property> <property name="selectionMode"> <enum>QAbstractItemView::SingleSelection</enum> </property> <property name="rootIsDecorated"> <bool>false</bool> </property> <property name="itemsExpandable"> <bool>false</bool> </property> <property name="sortingEnabled"> <bool>true</bool> </property> <property name="expandsOnDoubleClick"> <bool>false</bool> </property> <column> <property name="text"> <string>Name</string> </property> </column> <column> <property name="text"> <string>Path</string> </property> </column> <column> <property name="text"> <string>Commit</string> </property> </column> <column> <property name="text"> <string>Branch</string> </property> </column> </widget> </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" name="_2"> <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::Cancel|QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <tabstops> <tabstop>actionsButton</tabstop> <tabstop>expireCheckBox</tabstop> <tabstop>expireDateTimeEdit</tabstop> <tabstop>worktreeList</tabstop> <tabstop>errors</tabstop> </tabstops> <resources/> <connections> <connection> <sender>expireCheckBox</sender> <signal>toggled(bool)</signal> <receiver>expireDateTimeEdit</receiver> <slot>setEnabled(bool)</slot> <hints> <hint type="sourcelabel"> <x>644</x> <y>20</y> </hint> <hint type="destinationlabel"> <x>728</x> <y>21</y> </hint> </hints> </connection> </connections> <slots> <slot>accept()</slot> <slot>reject()</slot> </slots> </ui>