MeasurementTool: Deleted unnecessary localization markers
Related to #9768,point 4
This commit is contained in:
parent
2a6f53ce35
commit
7e51f85394
1 changed files with 3 additions and 3 deletions
|
@ -1937,19 +1937,19 @@ void GLGizmoMeasure::on_render_input_window(float x, float y, float bottom_limit
|
||||||
);
|
);
|
||||||
|
|
||||||
if (m_mode == EMode::FeatureSelection && m_hover_id != -1) {
|
if (m_mode == EMode::FeatureSelection && m_hover_id != -1) {
|
||||||
add_strings_row_to_table(*m_imgui, _u8L("Shift"), ImGuiWrapper::COL_ORANGE_LIGHT, _u8L("Enable point selection"), ImGui::GetStyleColorVec4(ImGuiCol_Text));
|
add_strings_row_to_table(*m_imgui, "Shift", ImGuiWrapper::COL_ORANGE_LIGHT, _u8L("Enable point selection"), ImGui::GetStyleColorVec4(ImGuiCol_Text));
|
||||||
++row_count;
|
++row_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_selected_features.first.feature.has_value()) {
|
if (m_selected_features.first.feature.has_value()) {
|
||||||
add_strings_row_to_table(*m_imgui, _u8L("Delete"), ImGuiWrapper::COL_ORANGE_LIGHT, _u8L("Restart selection"), ImGui::GetStyleColorVec4(ImGuiCol_Text));
|
add_strings_row_to_table(*m_imgui, "Delete", ImGuiWrapper::COL_ORANGE_LIGHT, _u8L("Restart selection"), ImGui::GetStyleColorVec4(ImGuiCol_Text));
|
||||||
++row_count;
|
++row_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_selected_features.first.feature.has_value() || m_selected_features.second.feature.has_value()) {
|
if (m_selected_features.first.feature.has_value() || m_selected_features.second.feature.has_value()) {
|
||||||
add_row_to_table(
|
add_row_to_table(
|
||||||
[this]() {
|
[this]() {
|
||||||
m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, _u8L("Esc"));
|
m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, "Esc");
|
||||||
},
|
},
|
||||||
[this]() {
|
[this]() {
|
||||||
m_imgui->text_colored(ImGui::GetStyleColorVec4(ImGuiCol_Text), _u8L("Unselect"));
|
m_imgui->text_colored(ImGui::GetStyleColorVec4(ImGuiCol_Text), _u8L("Unselect"));
|
||||||
|
|
Loading…
Add table
Reference in a new issue