From 08dbacbeb9875a35f8957f7e867218ef57ebdf04 Mon Sep 17 00:00:00 2001 From: alemuntoni Date: Mon, 4 Oct 2021 17:27:37 +0200 Subject: [PATCH] change default userdef point color --- src/common/ml_shared_data_context/ml_shared_data_context.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/ml_shared_data_context/ml_shared_data_context.cpp b/src/common/ml_shared_data_context/ml_shared_data_context.cpp index 591895f72..1d2317b69 100644 --- a/src/common/ml_shared_data_context/ml_shared_data_context.cpp +++ b/src/common/ml_shared_data_context/ml_shared_data_context.cpp @@ -420,7 +420,7 @@ MLRenderingData::PRIMITIVE_MODALITY MLPoliciesStandAloneFunctions::bestPrimitive void MLPoliciesStandAloneFunctions::suggestedDefaultPerViewGLOptions( MLPerViewGLOptions& tmp ) { tmp._perbbox_fixed_color = vcg::Color4b(0xffeaeaea); - tmp._perpoint_fixed_color = vcg::Color4b(0xff459583); + tmp._perpoint_fixed_color = vcg::Color4b(252, 233, 79, 255); tmp._perwire_fixed_color = vcg::Color4b(vcg::Color4b::DarkGray); tmp._persolid_fixed_color = vcg::Color4b(vcg::Color4b::LightGray); tmp._sel_enabled = true;