How to change ImGui::Text to multiline within a table and row if column is too narrow #3846
peterwilson136
announced in
Old/Archived discussions
Replies: 1 comment 1 reply
-
What table/column flags did you use? Did you try |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a table in ImGui, and I have some text under a column title "Description", the way the text is displayed is
ImGui::Text("This is some text");
but If a user changes the text to be bigger (edit and add more) I want the column to not keep growing in width, but rather only grow in width if they resize the column. I want the text to wrap within the confines of the width of the column it lies in and move to a new line accordingly. How can I do this?Beta Was this translation helpful? Give feedback.
All reactions