From 38fcb5fc32d377e4eaad6bf7a08d361d609d2ac3 Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Tue, 15 Sep 2015 01:09:59 +0300 Subject: [PATCH] CompundFilter: fix some wrong command strings Command menu title and tooltip were wrong (forgot to change them after copy-pasting from FuseCompound) --- CompoundFilter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CompoundFilter.py b/CompoundFilter.py index 800a4b6..47d8544 100644 --- a/CompoundFilter.py +++ b/CompoundFilter.py @@ -171,9 +171,9 @@ class _CommandCompoundFilter: "Command to create CompoundFilter feature" def GetResources(self): return {'Pixmap' : getIconPath("Lattice_CompoundFilter.svg"), - 'MenuText': QtCore.QT_TRANSLATE_NOOP("Lattice_CompoundFilter","Fuse compound"), + 'MenuText': QtCore.QT_TRANSLATE_NOOP("Lattice_CompoundFilter","Compound Filter"), 'Accel': "", - 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Lattice_CompoundFilter","Fuse objects contained in a compound")} + 'ToolTip': QtCore.QT_TRANSLATE_NOOP("Lattice_CompoundFilter","Compound Filter: remove some childs from a compound")} def Activated(self): if len(FreeCADGui.Selection.getSelection()) == 1 or len(FreeCADGui.Selection.getSelection()) == 2 :