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>GitPage</class> <widget class="QWidget" name="GitPage"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>609</width> <height>751</height> </rect> </property> <property name="toolTip"> <string/> </property> <layout class="QVBoxLayout" name="verticalLayout_2"> <item> <widget class="QLabel" name="headerLabel"> <property name="text"> <string><b>Configure Git Interface</b></string> </property> </widget> </item> <item> <widget class="Line" name="line15"> <property name="frameShape"> <enum>QFrame::HLine</enum> </property> <property name="frameShadow"> <enum>QFrame::Sunken</enum> </property> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> </widget> </item> <item> <widget class="QGroupBox" name="groupBox"> <property name="title"> <string>Log</string> </property> <layout class="QGridLayout" name="gridLayout"> <item row="0" column="0"> <widget class="QLabel" name="label"> <property name="text"> <string>No. of log messages shown:</string> </property> </widget> </item> <item row="0" column="1"> <widget class="QSpinBox" name="logSpinBox"> <property name="toolTip"> <string>Enter the number of log messages to be shown</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="maximum"> <number>999999</number> </property> <property name="singleStep"> <number>5</number> </property> </widget> </item> <item row="0" column="2"> <spacer> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>41</width> <height>20</height> </size> </property> </spacer> </item> <item row="1" column="0"> <widget class="QLabel" name="label_7"> <property name="text"> <string>No. of subject characters shown in list:</string> </property> </widget> </item> <item row="1" column="1"> <widget class="QSpinBox" name="logWidthSpinBox"> <property name="toolTip"> <string>Enter the number of characters of the commit subject to be shown in the list</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="specialValueText"> <string>All</string> </property> <property name="singleStep"> <number>5</number> </property> </widget> </item> <item row="2" column="0" colspan="3"> <widget class="QCheckBox" name="findHarderCheckBox"> <property name="toolTip"> <string>Select to perform expensive copy detection</string> </property> <property name="text"> <string>Find copies harder</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="groupBox_2"> <property name="title"> <string>Commit</string> </property> <layout class="QGridLayout" name="gridLayout_2"> <item row="0" column="1"> <widget class="QSpinBox" name="commitIdSpinBox"> <property name="toolTip"> <string>Enter the number of character to show for the commit ID</string> </property> <property name="alignment"> <set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set> </property> <property name="minimum"> <number>1</number> </property> <property name="maximum"> <number>40</number> </property> </widget> </item> <item row="0" column="2"> <spacer name="horizontalSpacer"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>269</width> <height>20</height> </size> </property> </spacer> </item> <item row="0" column="0"> <widget class="QLabel" name="label_4"> <property name="text"> <string>Commit ID length:</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="groupBox_5"> <property name="title"> <string>Cleanup</string> </property> <layout class="QHBoxLayout" name="horizontalLayout"> <item> <widget class="QLabel" name="label_3"> <property name="text"> <string>Pattern:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="cleanupPatternEdit"> <property name="toolTip"> <string>Enter the file name patterns to be used for cleaning up (entries separated by a space character)</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QGroupBox" name="groupBox_3"> <property name="title"> <string>Repository Optimization</string> </property> <layout class="QVBoxLayout" name="verticalLayout"> <item> <widget class="QCheckBox" name="aggressiveCheckBox"> <property name="toolTip"> <string>Select this to use the '--aggressive' option for garbage collection</string> </property> <property name="text"> <string>Perform aggressive repository optimization</string> </property> </widget> </item> </layout> </widget> </item> <item> <widget class="QPushButton" name="configButton"> <property name="toolTip"> <string>Edit the Git configuration file</string> </property> <property name="text"> <string>Edit configuration file</string> </property> </widget> </item> <item> <spacer> <property name="orientation"> <enum>Qt::Vertical</enum> </property> <property name="sizeHint" stdset="0"> <size> <width>388</width> <height>21</height> </size> </property> </spacer> </item> </layout> </widget> <tabstops> <tabstop>logSpinBox</tabstop> <tabstop>logWidthSpinBox</tabstop> <tabstop>findHarderCheckBox</tabstop> <tabstop>commitIdSpinBox</tabstop> <tabstop>cleanupPatternEdit</tabstop> <tabstop>aggressiveCheckBox</tabstop> <tabstop>configButton</tabstop> </tabstops> <resources/> <connections/> </ui>