Updated counter to +1

This commit is contained in:
Paul Ebbers 2025-02-23 17:20:30 +01:00
parent d9b07e6b4c
commit b49c45ab94

View File

@ -29,7 +29,7 @@ def loadAllWorkbenches():
lbl.show()
lst = Gui.listWorkbenches()
for i, wb in enumerate(lst):
msg = translate("SearchBar", "Loading workbench ") + wb + " (" + str(i) + "/" + str(len(lst)) + ")"
msg = translate("SearchBar", "Loading workbench ") + wb + " (" + str(i + 1) + "/" + str(len(lst)) + ")"
print(msg)
lbl.setText(msg)
geo = lbl.geometry()