From 2c78478b5c4081e382f789c1abe1267417e9c11b Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Wed, 25 Apr 2018 02:28:30 +0300 Subject: [PATCH] Part: fix compoundfilter's items property tooltip reported by chrisb: https://forum.freecadweb.org/viewtopic.php?f=3&t=28299#p229889 --- src/Mod/Part/CompoundTools/CompoundFilter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Part/CompoundTools/CompoundFilter.py b/src/Mod/Part/CompoundTools/CompoundFilter.py index 45ff8b5342..0a91ff5c40 100644 --- a/src/Mod/Part/CompoundTools/CompoundFilter.py +++ b/src/Mod/Part/CompoundTools/CompoundFilter.py @@ -58,7 +58,7 @@ class _CompoundFilter: obj.FilterType = 'bypass' # properties controlling "specific items" mode - obj.addProperty("App::PropertyString", "items", "CompoundFilter", "list of indexes of childs to be returned (like this: 1,4,8:10).") + obj.addProperty("App::PropertyString", "items", "CompoundFilter", "list of indexes of childs to be returned (like this: 1;4;8:10).") obj.addProperty("App::PropertyLink", "Stencil", "CompoundFilter", "Object that defines filtering")