From 18b1b99ac1e697da229322275ddd5b44ed6ce82a Mon Sep 17 00:00:00 2001 From: DeepSOIC Date: Tue, 27 Oct 2015 22:07:20 +0300 Subject: [PATCH] Fix Compose lacking icon in tree view A fundamental fix, which affected only Compose --- latticeBaseFeature.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/latticeBaseFeature.py b/latticeBaseFeature.py index cbb98ae..1562ce9 100644 --- a/latticeBaseFeature.py +++ b/latticeBaseFeature.py @@ -54,7 +54,8 @@ def makeLatticeFeature(name, AppClass, icon, ViewClass = None): vp = ViewClass(obj.ViewObject) else: vp = ViewProviderLatticeFeature(obj.ViewObject) - vp.icon = icon + + vp.icon = icon return obj