- fix in Tool Subtract where there was a typo

This commit is contained in:
Marius Stanciu
2020-10-28 16:02:18 +02:00
committed by Marius
parent 86a931ace5
commit d1368425f1
3 changed files with 4 additions and 3 deletions

View File

@@ -2133,8 +2133,8 @@ class FCComboBox(QtWidgets.QComboBox):
idx = self.findText(str(val))
if idx == -1:
self.setCurrentIndex(0)
else:
self.setCurrentIndex(idx)
return
self.setCurrentIndex(idx)
@property
def is_last(self):