From b49c45ab941e1f7948afc7d2b77a10e8fe232882 Mon Sep 17 00:00:00 2001 From: Paul Ebbers Date: Sun, 23 Feb 2025 17:20:30 +0100 Subject: [PATCH] Updated counter to +1 --- RefreshTools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RefreshTools.py b/RefreshTools.py index 38dcd78..acd8d15 100644 --- a/RefreshTools.py +++ b/RefreshTools.py @@ -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()