From 37db1cf9980473401681e7b2da89a4a9a77be698 Mon Sep 17 00:00:00 2001 From: nds Date: Tue, 25 Aug 2015 08:26:29 +0300 Subject: [PATCH] AcceptAll is always enabled. This is a temporary fix to hide a regression, where a sketch in the ExtrusionCut/Fuse can not be created. [parent operation extrusion cut/fuse is used instead of sketch to check whether parameters are valid]. --- src/XGUI/XGUI_OperationMgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/XGUI/XGUI_OperationMgr.cpp b/src/XGUI/XGUI_OperationMgr.cpp index 1845110e8..3bab1779f 100644 --- a/src/XGUI/XGUI_OperationMgr.cpp +++ b/src/XGUI/XGUI_OperationMgr.cpp @@ -189,7 +189,7 @@ void XGUI_OperationMgr::setApplyEnabled(const bool theEnabled) myIsApplyEnabled = theEnabled; emit validationStateChanged(theEnabled); - bool aParentValid = isParentOperationValid(); + bool aParentValid = true;//isParentOperationValid(); emit nestedStateChanged(aParentValid); } -- 2.39.2