--- a/src/eric7/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Thu Sep 28 14:02:15 2023 +0200 +++ b/src/eric7/Plugins/VcsPlugins/vcsGit/GitNewProjectOptionsDialog.py Wed Oct 04 17:50:59 2023 +0200 @@ -8,7 +8,7 @@ repository. """ -from PyQt6.QtCore import QUrl, pyqtSlot +from PyQt6.QtCore import Qt, QUrl, pyqtSlot from PyQt6.QtWidgets import QDialog, QDialogButtonBox from eric7 import Preferences @@ -44,6 +44,9 @@ self.vcsUrlClearHistoryButton.setIcon(EricPixmapCache.getIcon("editDelete")) vcsUrlHistory = self.__vcs.getPlugin().getPreferences("RepositoryUrlHistory") + self.vcsUrlCombo.completer().setCaseSensitivity( + Qt.CaseSensitivity.CaseSensitive + ) self.vcsUrlCombo.addItems(vcsUrlHistory) self.vcsUrlCombo.setEditText("")