update imgui to v1.92.3
and enable wordwrapping for the main message input
This commit is contained in:
3
external/imgui/CMakeLists.txt
vendored
3
external/imgui/CMakeLists.txt
vendored
@@ -11,7 +11,8 @@ if (NOT TARGET imgui)
|
||||
GIT_REPOSITORY https://github.com/ocornut/imgui.git
|
||||
#GIT_TAG f5befd2d29e66809cd1110a152e375a7f1981f06 # v1.91.9b
|
||||
#GIT_TAG 85b2fe8486190fa9326565a2fb5fccb6caea4396 # v1.92.0
|
||||
GIT_TAG 5d4126876bc10396d4c6511853ff10964414c776 # v1.92.1
|
||||
#GIT_TAG 5d4126876bc10396d4c6511853ff10964414c776 # v1.92.1
|
||||
GIT_TAG bf75bfec48fc00f532af8926130b70c0e26eb099 # v1.92.3
|
||||
EXCLUDE_FROM_ALL
|
||||
)
|
||||
|
||||
|
@@ -483,7 +483,8 @@ float ChatGui4::render(float time_delta, bool window_hidden, bool window_focused
|
||||
constexpr ImGuiInputTextFlags input_flags =
|
||||
//ImGuiInputTextFlags_AllowTabInput |
|
||||
ImGuiInputTextFlags_NoHorizontalScroll |
|
||||
ImGuiInputTextFlags_CallbackCharFilter;
|
||||
ImGuiInputTextFlags_CallbackCharFilter |
|
||||
ImGuiInputTextFlags_WordWrap;
|
||||
|
||||
bool text_input_validate {false};
|
||||
ImGui::InputTextMultiline(
|
||||
|
Reference in New Issue
Block a user