| 712 | } |
| 713 | |
| 714 | bool ImGui::Button(const char* label, const ImVec2& size_arg) |
| 715 | { |
| 716 | return ButtonEx(label, size_arg, ImGuiButtonFlags_None); |
| 717 | } |
| 718 | |
| 719 | // Small buttons fits within text without additional vertical spacing. |
| 720 | bool ImGui::SmallButton(const char* label) |
nothing calls this directly
no outgoing calls
no test coverage detected