Iris.InputTextMultiline
Closed this issue · 2 comments
SirMallard commented
Iris.InputTextMultiline
Michael-48 commented
Updating this issue to reflect the way ImGui handles multiline text input. In ImGui it is its own function, ImGui::InputTextMultiline()
. This is probably better because it has an additional argument, const ImVec2& size = ImVec2(0, 0)
which determines its size in characters.
SirMallard commented
This has been fixed 4eb3244 with the addition of the ContentHeight
config option, which now sets a minimum size for certain widgets. Additionally, ReadOnly and MultiLine arguments have been added to Iris.InpuText
which should cover everything needed by this.