From d532cfc0dc309ac50f1077d4134398d2f1d563d8 Mon Sep 17 00:00:00 2001 From: nds Date: Wed, 15 Mar 2017 07:52:38 +0300 Subject: [PATCH] #2027 Sketcher Trim feature - linux compilation correction: 100 symbols in a row --- src/PartSet/PartSet_WidgetFeaturePointSelector.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp b/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp index 78fcaf12a..50d0ea081 100644 --- a/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp +++ b/src/PartSet/PartSet_WidgetFeaturePointSelector.cpp @@ -78,8 +78,8 @@ bool PartSet_WidgetFeaturePointSelector::activateSelectionAndFilters(bool toActi std::vector aColors; aColors = Config_PropManager::color("Visualization", "sketch_entity_color", SKETCH_ENTITY_COLOR); - aColor = Quantity_Color(aColors[0] / 255., aColors[1] / 255., aColors[2] / 255., Quantity_TOC_RGB); - + aColor = Quantity_Color(aColors[0] / 255., aColors[1] / 255., aColors[2] / 255., + Quantity_TOC_RGB); myHighlightColor = aHStyle->Color(); mySelectionColor = aSStyle->Color(); @@ -123,7 +123,8 @@ void PartSet_WidgetFeaturePointSelector::mouseMoved(ModuleBase_IViewWindow* theW ModuleBase_ISelection* aSelect = myWorkshop->selection(); QList aHighlighted = aSelect->getHighlighted(); - ModuleBase_ViewerPrsPtr aPrs = !aHighlighted.empty() ? aHighlighted.first() : ModuleBase_ViewerPrsPtr(); + ModuleBase_ViewerPrsPtr aPrs = !aHighlighted.empty() ? aHighlighted.first() + : ModuleBase_ViewerPrsPtr(); fillFeature(aPrs, theWindow, theEvent); } -- 2.39.2