mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Disable undo/redo in command input
Currently causes undefined behavior, though it rarely crashes (I couldn't reproduce the crash, but do get undefined behavior by having random memory end up in the input field, or similar) Problem probably is because we don't store any undo/redo buffer. For now disabled, will revisit in the future.
This commit is contained in:
parent
5480d450a2
commit
2da11d2d32
@ -64,7 +64,8 @@ private:
|
||||
ImGuiInputTextFlags_CallbackHistory |
|
||||
ImGuiInputTextFlags_CallbackAlways |
|
||||
ImGuiInputTextFlags_CallbackEdit |
|
||||
ImGuiInputTextFlags_EnterReturnsTrue;
|
||||
ImGuiInputTextFlags_EnterReturnsTrue |
|
||||
ImGuiInputTextFlags_NoUndoRedo;
|
||||
|
||||
ImGuiWindowFlags m_nSuggestFlags =
|
||||
ImGuiWindowFlags_NoMove |
|
||||
|
Loading…
x
Reference in New Issue
Block a user