From: nds Date: Thu, 30 Mar 2017 07:39:53 +0000 (+0300) Subject: Line width should be less than 100 signs X-Git-Tag: V_2.7.0~134 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e2b09ef7ae7fae77e1a8dd4e5a7725da23081f1f;p=modules%2Fshaper.git Line width should be less than 100 signs --- diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index 5d879f42a..26672b472 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -1375,7 +1375,8 @@ bool XGUI_Displayer::customizeObject(ObjectPtr theObject) bool isCustomized = aCustomPrs.get() && aCustomPrs->customisePresentation(aResult, anAISObj, myCustomPrs); #ifdef DEBUG_FULLY_CONSTRAINED - isCustomized = myWorkshop->module()->afterCustomisePresentation(aResult, anAISObj, myCustomPrs) || isCustomized; + isCustomized = myWorkshop->module()->afterCustomisePresentation(aResult, anAISObj, myCustomPrs) + || isCustomized; #endif return isCustomized; }