| 824 | } |
| 825 | |
| 826 | bool ImGui::Button(const char* label, const ImVec2& size_arg) |
| 827 | { |
| 828 | return ButtonEx(label, size_arg, ImGuiButtonFlags_None); |
| 829 | } |
| 830 | |
| 831 | // Small buttons fits within text without additional vertical spacing. |
| 832 | bool ImGui::SmallButton(const char* label) |
nothing calls this directly
no outgoing calls
no test coverage detected