Fixed search selection and hex editor shortcuts

This commit is contained in:
WerWolv
2021-02-02 00:39:35 +01:00
parent 83bbde8d29
commit 29f50bb70b
2 changed files with 5 additions and 5 deletions

View File

@@ -612,7 +612,7 @@ struct MemoryEditor
ImGui::BeginChild("##scrolling");
ImGui::SetScrollFromPosY(ImGui::GetCursorStartPos().y + (GotoAddr / Cols) * ImGui::GetTextLineHeight());
ImGui::EndChild();
DataEditingAddr = DataPreviewAddr = GotoAddr;
DataEditingAddr = DataPreviewAddr = DataPreviewAddrEnd = GotoAddr;
DataEditingTakeFocus = true;
}
GotoAddr = (size_t)-1;