| 61 | } |
| 62 | |
| 63 | void Tooltip(const char* text) { |
| 64 | if (ImGui::IsItemHovered()) { |
| 65 | ImGui::SetTooltip("%s", WrappedText(text).c_str()); |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | void PushStyleMenu(const ImVec4& color) { |
| 70 | ImGui::PushStyleColor(ImGuiCol_Header, ImVec4(color.x, color.y, color.z, 0.5f)); |
nothing calls this directly
no test coverage detected