| 355 | } |
| 356 | |
| 357 | void utils::HelpMarker(const char *desc) |
| 358 | { |
| 359 | ImGui::PushStyleColor(ImGuiCol_Text,ImVec4(0.92f, 0.92f, 0.92f, 1.00f)); |
| 360 | ImGui::TextDisabled("(?)"); |
| 361 | if (ImGui::IsItemHovered()) |
| 362 | { |
| 363 | ImGui::BeginTooltip(); |
| 364 | ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); |
| 365 | ImGui::TextUnformatted(desc); |
| 366 | ImGui::PopTextWrapPos(); |
| 367 | ImGui::EndTooltip(); |
| 368 | } |
| 369 | ImGui::PopStyleColor(1); |
| 370 | } |
| 371 | |
| 372 | float utils::CenterHorizontal() |
| 373 | { |