Skip to content

Commit

Permalink
fix issue openMSX#1612
Browse files Browse the repository at this point in the history
  • Loading branch information
pvmm committed Apr 12, 2024
1 parent 048d9d6 commit b3d0fb0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/imgui/DebuggableEditor.cc
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,8 @@ void DebuggableEditor::drawContents(const Sizes& s, Debuggable& debuggable, unsi
}

auto handleInput = [&](unsigned addr, int width, auto formatData, auto parseData, int extraFlags = 0) {
// Setting End key to do nothing in TextInput##data
if (ImGui::IsKeyPressed(ImGuiKey_End)) return;
// Display text input on current byte
if (dataEditingTakeFocus) {
ImGui::SetKeyboardFocusHere(0);
Expand Down

0 comments on commit b3d0fb0

Please sign in to comment.