From 56d5046ef2b4dc190fc79bdb431ae3417efafb18 Mon Sep 17 00:00:00 2001 From: Salvatore Larosa Date: Tue, 31 May 2016 15:56:21 +0200 Subject: [PATCH] [processing] add again the algorithm name after being removed mistakenly in 507aeb0 (cherry-picked from 83502c5) --- python/plugins/processing/core/Processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/plugins/processing/core/Processing.py b/python/plugins/processing/core/Processing.py index 426f37f6a5e3..d889ff20de94 100644 --- a/python/plugins/processing/core/Processing.py +++ b/python/plugins/processing/core/Processing.py @@ -358,7 +358,7 @@ def runAlgorithm(algOrName, onFinish, *args, **kwargs): if kwargs is not None and "progress" in kwargs.keys(): progress = kwargs["progress"] elif iface is not None: - progress = MessageBarProgress() + progress = MessageBarProgress(alg.name) ret = runalg(alg, progress) if ret: