@@ -430,7 +430,9 @@ namespace rs2
430430 ImGui::SetCursorPos ({ pos.x + 57 , pos.y + bar_spacing * (i - j) + 14 });
431431 ImGui::PushStyleColor (ImGuiCol_Text,
432432 blend (blend (light_grey, alpha), distance_guide ? 1 .f : fade_factor));
433- ImGui::Text (textual_icons::angle_right);
433+ std::string angle_right_str = std::string (rsutils::string::from ()
434+ << textual_icons::angle_right);
435+ ImGui::Text (" %s" , angle_right_str.c_str ());
434436 ImGui::PopStyleColor ();
435437 }
436438 }
@@ -445,7 +447,8 @@ namespace rs2
445447 ImGui::SetCursorPos ({ pos.x + 57 , pos.y + bar_spacing * (i + j) + 14 });
446448 ImGui::PushStyleColor (ImGuiCol_Text,
447449 blend (blend (light_grey, alpha), distance_guide ? 1 .f : fade_factor));
448- ImGui::Text (textual_icons::angle_left);
450+ std::string angle_left_str = std::string (rsutils::string::from () << textual_icons::angle_left);
451+ ImGui::Text (" %s" , angle_left_str.c_str ());
449452 ImGui::PopStyleColor ();
450453 }
451454 }
@@ -1240,7 +1243,9 @@ namespace rs2
12401243 auto col0 = ImGui::GetCursorPos ();
12411244 ImGui::SetCursorPosX (left_x);
12421245 ImGui::PushFont (win.get_large_font ());
1243- ImGui::Text (textual_icons::angle_double_up);
1246+ std::string angle_double_up_str = std::string (rsutils::string::from ()
1247+ << textual_icons::angle_double_up);
1248+ ImGui::Text (" %s" , angle_double_up_str.c_str ());
12441249 if (ImGui::IsItemHovered ())
12451250 {
12461251 RsImGui::CustomTooltip (" This metric shows positive trend" );
@@ -1256,7 +1261,9 @@ namespace rs2
12561261 auto col0 = ImGui::GetCursorPos ();
12571262 ImGui::SetCursorPosX (left_x);
12581263 ImGui::PushFont (win.get_large_font ());
1259- ImGui::Text (textual_icons::angle_double_down);
1264+ std::string angle_double_down_str = std::string (rsutils::string::from ()
1265+ << textual_icons::angle_double_down);
1266+ ImGui::Text (" %s" , angle_double_down_str.c_str ());
12601267 if (ImGui::IsItemHovered ())
12611268 {
12621269 RsImGui::CustomTooltip (" This metric shows negative trend" );
0 commit comments