diff -r fc1ae39af8c9 -r 8c1445825e7b eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py --- a/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Thu Mar 04 17:44:41 2021 +0100 +++ b/eric6/Plugins/VcsPlugins/vcsPySvn/SvnStatusDialog.py Thu Mar 04 17:48:09 2021 +0100 @@ -551,13 +551,15 @@ commitable = len(self.__getCommitableItems()) self.commitButton.setEnabled(commitable) - @pyqtSlot(str) - def on_statusFilterCombo_activated(self, txt): + @pyqtSlot(int) + def on_statusFilterCombo_activated(self, index): """ Private slot to react to the selection of a status filter. - @param txt selected status filter (string) + @param index index of the selected entry + @type int """ + txt = self.statusFilterCombo.itemText(index) if txt == "<{0}>".format(self.tr("all")): for topIndex in range(self.statusList.topLevelItemCount()): topItem = self.statusList.topLevelItem(topIndex)