| 4943 | } |
| 4944 | |
| 4945 | static void HelpMarker(const char* desc) { |
| 4946 | ImGui::TextDisabled("(?)"); |
| 4947 | if (ImGui::IsItemHovered()) { |
| 4948 | ImGui::BeginTooltip(); |
| 4949 | ImGui::PushTextWrapPos(ImGui::GetFontSize() * 35.0f); |
| 4950 | ImGui::TextUnformatted(desc); |
| 4951 | ImGui::PopTextWrapPos(); |
| 4952 | ImGui::EndTooltip(); |
| 4953 | } |
| 4954 | } |
| 4955 | |
| 4956 | bool ShowStyleSelector(const char* label) |
| 4957 | { |
no test coverage detected