From 79099cce04bb946f2cd5152aa1f4df67eaebe181 Mon Sep 17 00:00:00 2001 From: vsv Date: Wed, 9 Jan 2019 17:43:28 +0300 Subject: [PATCH] Fix line length issue --- src/XGUI/XGUI_Displayer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/XGUI/XGUI_Displayer.cpp b/src/XGUI/XGUI_Displayer.cpp index 8eb1c1261..16b1ecb65 100644 --- a/src/XGUI/XGUI_Displayer.cpp +++ b/src/XGUI/XGUI_Displayer.cpp @@ -698,7 +698,8 @@ Handle(AIS_InteractiveContext) XGUI_Displayer::AISContext() const ModuleBase_IViewer::DefaultHighlightDrawer = aContext->HighlightStyle(); Handle(Prs3d_Drawer) aSelStyle = aContext->SelectionStyle(); - double aDeflection = QString(ModelAPI_ResultConstruction::DEFAULT_DEFLECTION().c_str()).toDouble(); + double aDeflection = + QString(ModelAPI_ResultConstruction::DEFAULT_DEFLECTION().c_str()).toDouble(); try { aDeflection = Config_PropManager::real("Visualization", "construction_deflection"); } catch (...) {} -- 2.39.2