| 706 | } |
| 707 | |
| 708 | void TextDisabled(String text) { |
| 709 | ImGui::PushStyleColor(ImGuiCol_Text, ImGui::GetStyle().Colors[ImGuiCol_TextDisabled]); |
| 710 | ImGui::TextUnformatted(text.begin(), text.end()); |
| 711 | ImGui::PopStyleColor(); |
| 712 | } |
| 713 | |
| 714 | void TextWrapped(String text) { |
| 715 | ImGui::TextWrappedUnformatted(text.begin(), text.end()); |
no test coverage detected