ImGuiColorTextEdit
ImGuiColorTextEdit copied to clipboard
`ImGui::GetKeyIndex ` function does not exist in current version of ImGui (1.91)
if (!IsReadOnly() && ctrl && !shift && !alt && ImGui::IsKeyPressed(ImGui::GetKeyIndex(ImGuiKey_Z)))
should be changed to:
if (!IsReadOnly() && ctrl && !shift && !alt && ImGui::IsKeyPressed(ImGuiKey_Z))
Error: error C2039: 'GetKeyIndex': is not a member of 'ImGui'
Hi, did you find a workaround through this?
Just remove the IsKeyPressed function. like
MoveEnd(shift);