GUI: I am done
look I need to sleep
This commit is contained in:
parent
cec31b23de
commit
b9d8d91ca7
5 changed files with 8 additions and 9 deletions
3
extern/imgui_patched/imgui_widgets.cpp
vendored
3
extern/imgui_patched/imgui_widgets.cpp
vendored
|
|
@ -3970,8 +3970,7 @@ bool ImGui::InputTextEx(const char* label, const char* hint, char* buf, int buf_
|
|||
const bool is_multiline = (flags & ImGuiInputTextFlags_Multiline) != 0;
|
||||
const bool is_readonly = (flags & ImGuiInputTextFlags_ReadOnly) != 0;
|
||||
const bool is_password = (flags & ImGuiInputTextFlags_Password) != 0;
|
||||
// https://github.com/tildearrow/furnace/issues/624
|
||||
const bool is_undoable = 0; //(flags & ImGuiInputTextFlags_NoUndoRedo) == 0;
|
||||
const bool is_undoable = (flags & ImGuiInputTextFlags_UndoRedo) != 0;
|
||||
const bool is_resizable = (flags & ImGuiInputTextFlags_CallbackResize) != 0;
|
||||
if (is_resizable)
|
||||
IM_ASSERT(callback != NULL); // Must provide a callback if you set the ImGuiInputTextFlags_CallbackResize flag!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue