| 1886 | } |
| 1887 | |
| 1888 | bool inputTextMultiline( const char* label, std::string& str, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data ) |
| 1889 | { |
| 1890 | return basicTextInput( label, str, flags, [&]{ return ImGui::InputTextMultiline( label, &str, size, flags, callback, user_data ); } ); |
| 1891 | } |
| 1892 | |
| 1893 | bool inputTextIntoArrayMultiline( const char* label, char* buf, size_t buf_size, const ImVec2& size, ImGuiInputTextFlags flags, ImGuiInputTextCallback callback, void* user_data ) |
| 1894 | { |
no test coverage detected