From b48d20220e5ef5591f3a66e78baabc6ed8852f97 Mon Sep 17 00:00:00 2001 From: nirvn Date: Mon, 31 Oct 2016 11:18:22 +0700 Subject: [PATCH] [processing] resurrect editing of modeler item on double-click --- python/plugins/processing/modeler/ModelerGraphicItem.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/plugins/processing/modeler/ModelerGraphicItem.py b/python/plugins/processing/modeler/ModelerGraphicItem.py index 4c47816e260..b0fdf6c7c1d 100644 --- a/python/plugins/processing/modeler/ModelerGraphicItem.py +++ b/python/plugins/processing/modeler/ModelerGraphicItem.py @@ -132,8 +132,7 @@ class ModelerGraphicItem(QGraphicsItem): return rect def mouseDoubleClickEvent(self, event): - pass - #self.editElement() + self.editElement() def contextMenuEvent(self, event): if isinstance(self.element, ModelerOutput):