diff --git a/common/on-chip-calib.cpp b/common/on-chip-calib.cpp index 5c334644ca9..cfedf10dd35 100644 --- a/common/on-chip-calib.cpp +++ b/common/on-chip-calib.cpp @@ -2096,13 +2096,6 @@ namespace rs2 if (ImGui::IsItemHovered()) RsImGui::CustomTooltip("%s", "Calculate ground truth for the specific target"); - ImGui::SetCursorScreenPos({ float(x + 9), float(y + height - ImGui::GetTextLineHeightWithSpacing() - 30) }); - bool assistance = (get_manager().host_assistance != 0); - if (ImGui::Checkbox("Host Assistance", &assistance)) - get_manager().host_assistance = (assistance ? 1 : 0); - if (ImGui::IsItemHovered()) - RsImGui::CustomTooltip("%s", "check = host assitance for statistics data, uncheck = no host assistance"); - std::string button_name = rsutils::string::from() << "Calibrate" << "##tare" << index; ImGui::SetCursorScreenPos({ float(x + 5), float(y + height - 28) }); @@ -2191,11 +2184,6 @@ namespace rs2 //if (ImGui::IsItemHovered()) // RsImGui::CustomTooltip("%s", "On-Chip Calibration Extended"); - ImGui::SetCursorScreenPos({ float(x + 9), float(y + height - ImGui::GetTextLineHeightWithSpacing() - 31) }); - bool assistance = (get_manager().host_assistance != 0); - ImGui::Checkbox("Host Assistance", &assistance); - if (ImGui::IsItemHovered()) - RsImGui::CustomTooltip("%s", "check = host assitance for statistics data, uncheck = no host assistance"); auto sat = 1.f + sin(duration_cast(system_clock::now() - created_time).count() / 700.f) * 0.1f; ImGui::PushStyleColor(ImGuiCol_Button, saturate(sensor_header_light_blue, sat));